diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-07-07 21:13:02 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-07-07 21:13:02 +0200 |
commit | 2a229e50cf4c36d4fae07bbc2438a99ef5ad1032 (patch) | |
tree | d84683add44c4f90d9f56c5a18c4c63720d722d5 /modules/luci-base/luasrc | |
parent | 875a96f6535a97b93d09af5756db53d91e83dc49 (diff) |
luci-base: fix cbi mvalue templates
Fixes: 9c7eb1dec ("luci-base: switch from server side to client side widget markup")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/luasrc')
-rw-r--r-- | modules/luci-base/luasrc/view/cbi/mvalue.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/luasrc/view/cbi/mvalue.htm b/modules/luci-base/luasrc/view/cbi/mvalue.htm index 4974a4ed28..d1fb803678 100644 --- a/modules/luci-base/luasrc/view/cbi/mvalue.htm +++ b/modules/luci-base/luasrc/view/cbi/mvalue.htm @@ -1,6 +1,6 @@ <%+cbi/valueheader%> <div<%=attr("data-ui-widget", luci.util.serialize_json({ - "Select", self:cfgvalues(section), self:choices(), { + "Select", self:cfgvalue(section) or self.default, self:choices(), { id = cbid, name = cbid, size = self.size, |