From e08008cecacf3cafe18d1c4e80a682d306dfe178 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Thu, 12 Mar 2026 06:00:11 +0100 Subject: [PATCH] luci-app-unbound: additional fixes Signed-off-by: Paul Donald --- .../htdocs/luci-static/resources/view/unbound/configure.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 fab8ff8663..d8e2da4719 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 @@ -118,6 +118,7 @@ return view.extend({ pfx.depends('dns64', '1'); const exga = s.taboption('advanced', form.Flag, 'exclude_ipv6_ga', _('Exclude IPv6 GA')); + exga.rmempty = false; const din = s.taboption('advanced', form.DynamicList, 'domain_insecure', _('Domain Insecure'), _('List domains to bypass checks of DNSSEC')); @@ -266,7 +267,7 @@ return view.extend({ const tlm = s.taboption('resource', form.Value, 'ttl_min', _('TTL Minimum'), _('Prevent excessively short cache periods')); - tlm.datatype = 'and(uinteger,min(0),max(1200))'; + tlm.datatype = 'and(uinteger,min(0),max(1800))'; tlm.placeholder = '120'; const tlnm = s.taboption('resource', form.Value, 'ttl_neg_max', _('TTL Neg Max'));