diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2023-08-31 12:00:42 +0300 |
---|---|---|
committer | Sergey Ponomarev <stokito@gmail.com> | 2023-08-31 12:00:42 +0300 |
commit | a0e13dc19a5306880b4f96f40701d7df23459be2 (patch) | |
tree | b299c297d7838e4483953581b8099e2c5b2ba09c | |
parent | 48f0fc85f3e784a7411ffecfa0002f3acb692ac7 (diff) |
luci-app-adblock: Remove unused unspecified option
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
-rw-r--r-- | applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js index 9b0aa5bc0d..846689e945 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js @@ -311,7 +311,6 @@ return view.extend({ o = s.taboption('general', widgets.NetworkSelect, 'adb_trigger', _('Startup Trigger Interface'), _('List of available network interfaces to trigger the adblock start. \ Choose \'unspecified\' to use a classic startup timeout instead of a network trigger.')); - o.unspecified = true; o.nocreate = true; o.rmempty = true; @@ -320,14 +319,12 @@ return view.extend({ o = s.taboption('general', widgets.ZoneSelect, 'adb_zonelist', _('Forced Zones'), _('Firewall source zones that should be forced locally.')); o.depends('adb_forcedns', '1'); - o.unspecified = true; o.multiple = true; o.nocreate = true; o.rmempty = true; o = s.taboption('general', form.DynamicList, 'adb_portlist', _('Forced Ports'), _('Firewall ports that should be forced locally.')); o.depends('adb_forcedns', '1'); - o.unspecified = true; o.multiple = true; o.nocreate = false; o.datatype = 'port'; @@ -484,7 +481,6 @@ return view.extend({ o.default = '<em><b>Changes on this tab needs a full adblock service restart to take effect.</b></em>'; o = s.taboption('adv_report', widgets.DeviceSelect, 'adb_repiface', _('Report Interface'), _('List of available network devices used by tcpdump.')); - o.unspecified = true; o.nocreate = false; o.rmempty = true; |