diff options
author | Paul Donald <newtwen@gmail.com> | 2024-02-15 23:07:31 +0100 |
---|---|---|
committer | Paul Donald <newtwen@gmail.com> | 2024-02-15 23:07:31 +0100 |
commit | 5b955f1ae922e37ec6bc07599d547aa9c3a5ebf1 (patch) | |
tree | 896f916d843dddb04686751bb9adc672ea0e899e /modules/luci-mod-network/htdocs | |
parent | 2841d28396984431f3cf313cf0fbf381441ec40e (diff) |
luci-mod-network: dhcp: separate actual value and display string
saved value will now be only an integer.
Signed-off-by: Paul Donald <newtwen@gmail.com>
Diffstat (limited to 'modules/luci-mod-network/htdocs')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js index 7b0ae3c1f9..2006657f0f 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js @@ -800,7 +800,8 @@ return view.extend({ so.optional = true; Object.values(L.uci.sections('dhcp', 'dnsmasq')).forEach(function(val, index) { - so.value(generateDnsmasqInstanceEntry(val)); + var name, display_str = generateDnsmasqInstanceEntry(val); + so.value(index, display_str); }); o = s.taboption('srvhosts', form.SectionValue, '__srvhosts__', form.TableSection, 'srvhost', null, @@ -1078,7 +1079,8 @@ return view.extend({ so.optional = true; Object.values(L.uci.sections('dhcp', 'dnsmasq')).forEach(function(val, index) { - so.value(generateDnsmasqInstanceEntry(val)); + var name, display_str = generateDnsmasqInstanceEntry(val); + so.value(index, display_str); }); |