From: Paul Donald Date: Fri, 13 Mar 2026 12:53:34 +0000 (+0100) Subject: luci-app-unbound: additional fixes X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5e9c736a9c661b6d2aec11022cecc59f40f6b628;p=openwrt-luci.git luci-app-unbound: additional fixes follow-up to e08008cecacf3cafe18d1c4e80a682d306dfe178 rename variables which re-assign the previous form.Value entry. Signed-off-by: Paul Donald --- diff --git a/applications/luci-app-unbound/htdocs/luci-static/resources/view/unbound/configure.js b/applications/luci-app-unbound/htdocs/luci-static/resources/view/unbound/configure.js index d8e2da4719..94321b7a65 100644 --- a/applications/luci-app-unbound/htdocs/luci-static/resources/view/unbound/configure.js +++ b/applications/luci-app-unbound/htdocs/luci-static/resources/view/unbound/configure.js @@ -271,8 +271,8 @@ return view.extend({ tlm.placeholder = '120'; const tlnm = s.taboption('resource', form.Value, 'ttl_neg_max', _('TTL Neg Max')); - tlm.datatype = 'and(uinteger,min(0),max(1200))'; - tlm.placeholder = '1000'; + tlnm.datatype = 'and(uinteger,min(0),max(1200))'; + tlnm.placeholder = '1000'; const rtt = s.taboption('resource', form.Value, 'rate_limit', _('Query Rate Limit'), _('Prevent client query overload; zero is off'));