summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-network/htdocs/luci-static
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static')
-rw-r--r--modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js10
1 files changed, 5 insertions, 5 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 051e8d529c..4f6fe79385 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
@@ -101,7 +101,7 @@ function generateDnsmasqInstanceEntry(data) {
}
formatString += ')';
- return nameValueMap.get('.name'), formatString;
+ return [nameValueMap.get('.name'), formatString];
}
function getDHCPPools() {
@@ -830,8 +830,8 @@ return view.extend({
so.optional = true;
Object.values(L.uci.sections('dhcp', 'dnsmasq')).forEach(function(val, index) {
- var name, display_str = generateDnsmasqInstanceEntry(val);
- so.value(index, display_str);
+ var [name, display_str] = generateDnsmasqInstanceEntry(val);
+ so.value(name, display_str);
});
o = s.taboption('dnsrecords', form.SectionValue, '__dnsrecords__', form.TypedSection, '__dnsrecords__');
@@ -1125,8 +1125,8 @@ return view.extend({
so.optional = true;
Object.values(L.uci.sections('dhcp', 'dnsmasq')).forEach(function(val, index) {
- var name, display_str = generateDnsmasqInstanceEntry(val);
- so.value(index, display_str);
+ var [name, display_str] = generateDnsmasqInstanceEntry(val);
+ so.value(name, display_str);
});