From 141cb7cba5c36a9c5415772e2de9823f927d7abb Mon Sep 17 00:00:00 2001
From: Trygve Laugstøl <trygvis@inamo.no>
Date: Sat, 31 Oct 2015 20:04:06 +0100
Subject: web: o Better form interaction: enter to submit and autofocus on the
 field.

---
 src/DillerDao.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'src')

diff --git a/src/DillerDao.js b/src/DillerDao.js
index fa27aa1..e372841 100644
--- a/src/DillerDao.js
+++ b/src/DillerDao.js
@@ -32,7 +32,8 @@ function DillerDao(tx) {
     var fields = _(attributes).chain()
       .map(function (value, attribute) {
         if (attribute == 'name' || attribute == 'description') {
-          values.push(value);
+          value = (value || '').trim();
+          values.push(value.length > 0 ? value : null);
           return attribute + ' = $' + i++;
         }
       })
-- 
cgit v1.2.3