summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--luci2/htdocs/luci2/uci.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/luci2/htdocs/luci2/uci.js b/luci2/htdocs/luci2/uci.js
index 2056ce9..c751de3 100644
--- a/luci2/htdocs/luci2/uci.js
+++ b/luci2/htdocs/luci2/uci.js
@@ -303,7 +303,7 @@ Class.extend({
else
delete n[conf][sid][opt];
}
- else if (typeof(val) != 'undefined')
+ else if (typeof(val) != 'undefined' && val !== '')
{
/* do not set within deleted section */
if (d[conf] && d[conf][sid] === true)