diff options
author | Paul Donald <newtwen@gmail.com> | 2024-01-26 00:57:09 +0100 |
---|---|---|
committer | Paul Donald <newtwen@gmail.com> | 2024-01-26 00:57:24 +0100 |
commit | 09ab7641738c35b2f7bfbcfe62fc77fe1c77c3c9 (patch) | |
tree | a124d8132c4d0dc9cb458771f8c99d41032df2af /modules/luci-mod-network/htdocs/luci-static | |
parent | 010c32010b20b8e159cfadaf58c20e775b119388 (diff) |
luci-mod-network: Restructure DHCP options
Multiple dnsmasq sections are now enabled (for those who want
e.g. separate dnsmasq options per interface).
Signed-off-by: Paul Donald <newtwen@gmail.com>
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js | 4 |
1 files changed, 2 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 5ae10f6d4c..2166d34a85 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 @@ -316,8 +316,8 @@ return view.extend({ _('Dnsmasq is a lightweight <abbr title="Dynamic Host Configuration Protocol">DHCP</abbr> server and <abbr title="Domain Name System">DNS</abbr> forwarder.')); s = m.section(form.TypedSection, 'dnsmasq'); - s.anonymous = true; - s.addremove = false; + s.anonymous = false; + s.addremove = true; |