diff options
author | Jo-Philipp Wich <jo@mein.io> | 2023-08-31 13:33:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 13:33:49 +0200 |
commit | 96b11ae111c49f41594195291aa2151ae1046da9 (patch) | |
tree | 015b6320e9358efbf71f8423690cc06655d908eb /applications/luci-app-adblock | |
parent | 48f0fc85f3e784a7411ffecfa0002f3acb692ac7 (diff) | |
parent | 038fdd9fbcd544abcb215c9a1bbbb5dde263fa7e (diff) |
Merge pull request #6550 from stokito/devices_unspecified
Devices unspecified
Diffstat (limited to 'applications/luci-app-adblock')
-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; |