diff options
author | Paul Donald <newtwen@gmail.com> | 2024-01-30 19:31:38 +0100 |
---|---|---|
committer | Paul Donald <newtwen@gmail.com> | 2024-01-31 02:53:21 +0100 |
commit | 4c2090afd865045e3693b84318de3b56f658e48a (patch) | |
tree | eed9eec7b84be88ede0ae552a4106a0ad1a817cd /modules/luci-base/htdocs/luci-static | |
parent | e7049d3f070377d90a01e1a9829eb077dbf2d894 (diff) |
luci-base: Code quality fixes
handle (possibly incorrect) comment variants
<!-- -->
<!-- --!>
Signed-off-by: Paul Donald <newtwen@gmail.com>
Diffstat (limited to 'modules/luci-base/htdocs/luci-static')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/ui.js b/modules/luci-base/htdocs/luci-static/resources/ui.js index 5502dfed25..98dc5add59 100644 --- a/modules/luci-base/htdocs/luci-static/resources/ui.js +++ b/modules/luci-base/htdocs/luci-static/resources/ui.js @@ -1601,7 +1601,7 @@ var UIDropdown = UIElement.extend(/** @lends LuCI.ui.Dropdown.prototype */ { markup = null; if (tpl) - markup = (tpl.textContent || tpl.innerHTML || tpl.firstChild.data).replace(/^<!--|-->$/, '').trim(); + markup = (tpl.textContent || tpl.innerHTML || tpl.firstChild.data).replace(/^<!--|--!?>$/, '').trim(); else markup = '<li data-value="{{value}}"><span data-label-placeholder="true" /></li>'; |