diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2023-02-27 05:47:55 +0200 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2023-02-27 05:47:55 +0200 |
commit | 92cce9a44a65512e8336628de0e52dc7274436ea (patch) | |
tree | b8aef2e326531042405d9770c903af32a0b52f39 /modules/luci-mod-network/htdocs/luci-static/resources | |
parent | 1b623cbe60678a60e8c73e00bc2b09daa72d30eb (diff) |
luci-mod-network: adjust DNS cache size placeholder
Adjust DNS cache size placeholder value to 1000 to
match the OpenWrt default after
https://github.com/openwrt/openwrt/commit/a57796b137494fc20e984d0049e8e7430e9ebb25
Fixes #6254
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static/resources')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js | 2 |
1 files changed, 1 insertions, 1 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 c62231fe20..3a213a20cd 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 @@ -555,7 +555,7 @@ return view.extend({ _('Number of cached DNS entries, 10000 is maximum, 0 is no caching.')); o.optional = true; o.datatype = 'range(0,10000)'; - o.placeholder = 150; + o.placeholder = 1000; o = s.taboption('pxe_tftp', form.Flag, 'enable_tftp', _('Enable TFTP server'), |