diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2023-08-31 12:01:11 +0300 |
---|---|---|
committer | Sergey Ponomarev <stokito@gmail.com> | 2023-08-31 12:01:11 +0300 |
commit | d0807ec46d46f5620f17519fc8f27135bfe8db93 (patch) | |
tree | 812eeffbd1cd7f90d2ffbce950e05f679bbe6679 /applications | |
parent | 2093f1f832223c8043aae599caaa167b5ce36ed3 (diff) |
luci-app-travelmate: Remove unused unspecified option
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
Diffstat (limited to 'applications')
2 files changed, 0 insertions, 3 deletions
diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js index a8069135a0..7de69e07a4 100644 --- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js @@ -321,7 +321,6 @@ return view.extend({ o = s.taboption('general', widgets.NetworkSelect, 'trm_vpnifacelist', _('Limit VPN processing'), _('Limit VPN processing to certain interfaces.')); o.depends('trm_vpn', '1'); - o.unspecified = true; o.multiple = true; o.nocreate = true; o.rmempty = true; diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js index fcd98fa37f..00ff71c8de 100644 --- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js @@ -557,7 +557,6 @@ return view.extend({ o.ucisection = 'uplink'; o.ucioption = 'macaddr'; o.nocreate = false; - o.unspecified = true; o.rmempty = true; o.datatype = 'macaddr'; o.cfgvalue = function (section_id) { @@ -699,7 +698,6 @@ return view.extend({ } o = s.taboption('vpn', widgets.NetworkSelect, '_vpniface', _('VPN Interface'), _('The logical vpn network interface like \'wg0\'.')); - o.unspecified = false; o.nocreate = true; o.optional = true; o.modalonly = true; |