From 5e9c736a9c661b6d2aec11022cecc59f40f6b628 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Fri, 13 Mar 2026 13:53:34 +0100 Subject: [PATCH] luci-app-unbound: additional fixes follow-up to e08008cecacf3cafe18d1c4e80a682d306dfe178 rename variables which re-assign the previous form.Value entry. Signed-off-by: Paul Donald --- .../htdocs/luci-static/resources/view/unbound/configure.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'));