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'));