luci-mod-system: Remove unused unspecified option

Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
This commit is contained in:
Sergey Ponomarev 2023-08-31 12:01:35 +03:00
parent c2aa6ac165
commit 038fdd9fbc

View file

@ -16,7 +16,6 @@ return view.extend({
o = s.option(widgets.NetworkSelect, 'Interface', _('Interface'), _('Listen only on the given interface or, if unspecified, on all')); o = s.option(widgets.NetworkSelect, 'Interface', _('Interface'), _('Listen only on the given interface or, if unspecified, on all'));
o.nocreate = true; o.nocreate = true;
o.unspecified = true;
o = s.option(form.Value, 'Port', _('Port')); o = s.option(form.Value, 'Port', _('Port'));
o.datatype = 'port'; o.datatype = 'port';