luci-base: form.js: treat inactive options as optional
[project/luci.git] / modules / luci-base / htdocs / luci-static / resources / form.js
index 46f1ff4825680cb7ea732bffba05bca9743b76af..d5f9fe3c5203a3cf62504fd334773ca9a45f075f 100644 (file)
@@ -834,7 +834,7 @@ var CBIAbstractValue = CBINode.extend({
                                return Promise.resolve(this.write(section_id, fval));
                }
                else {
                                return Promise.resolve(this.write(section_id, fval));
                }
                else {
-                       if (this.rmempty || this.optional) {
+                       if (!active || this.rmempty || this.optional) {
                                return Promise.resolve(this.remove(section_id));
                        }
                        else if (!isEqual(cval, fval)) {
                                return Promise.resolve(this.remove(section_id));
                        }
                        else if (!isEqual(cval, fval)) {