diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-04-16 17:29:32 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-04-16 17:32:22 +0200 |
commit | 5c792aefc744d1417fc9e24cfb92cd61cf8a651f (patch) | |
tree | 7fe0880ec5d20f69f91dacafd34ff0e63d829cac /modules/luci-base/htdocs | |
parent | 6cda999e80399d2d8982be6737711c780f3df289 (diff) |
luci-base: form.js: fix AbstractValue.textvalue() for uci list options
Serialize the uci list value into a space separated string before passing
it to String.format() for HTML escaping. Without that change, empty strings
were returned whenever the underlying uci get operation yieled an array.
Fixes: #4993
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/htdocs')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/form.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js index 58a31dddb2..f7b4c64f8f 100644 --- a/modules/luci-base/htdocs/luci-static/resources/form.js +++ b/modules/luci-base/htdocs/luci-static/resources/form.js @@ -1862,6 +1862,9 @@ var CBIAbstractValue = CBIAbstractElement.extend(/** @lends LuCI.form.AbstractVa if (cval == null) cval = this.default; + if (Array.isArray(cval)) + cval = cval.join(' '); + return (cval != null) ? '%h'.format(cval) : null; }, |