diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-06-06 21:05:15 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-07-07 15:36:25 +0200 |
commit | 1482554de6c3ae12d38c6b484d38758d5d8a3b7e (patch) | |
tree | 7df2902f4983202a250e835d6e248b624b009c9a /modules/luci-base | |
parent | ff775a69f7aab1316404e139718b0526e79b6f1f (diff) |
luci-base: form.js: fix rendering flag values in modals
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js index 61518b749..0352b7807 100644 --- a/modules/luci-base/htdocs/luci-static/resources/form.js +++ b/modules/luci-base/htdocs/luci-static/resources/form.js @@ -1084,7 +1084,7 @@ var CBITableSection = CBITypedSection.extend({ for (var i = 0; i < this.children.length; i++) { var o1 = this.children[i]; - if (o1.disabled || o1.modalonly === false) + if (o1.modalonly === false) continue; var o2 = s.option(o1.constructor, o1.option, o1.title, o1.description); |