luci-mod-network: routes: allow prefixes as route source

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2022-04-28 12:08:37 +02:00
parent c2eb30bba7
commit 904c174caf

View file

@ -98,7 +98,7 @@ return view.extend({
o = s.taboption('advanced', form.Value, 'source', _('Source'), _('Specifies the preferred source address when sending to destinations covered by the target')); o = s.taboption('advanced', form.Value, 'source', _('Source'), _('Specifies the preferred source address when sending to destinations covered by the target'));
o.modalonly = true; o.modalonly = true;
o.datatype = (family == 6) ? 'ip6addr("nomask")' : 'ip4addr("nomask")'; o.datatype = (family == 6) ? 'ip6addr' : 'ip4addr';
o.placeholder = E('em', _('auto')); o.placeholder = E('em', _('auto'));
for (var i = 0; i < netDevs.length; i++) { for (var i = 0; i < netDevs.length; i++) {
var addrs = (family == 6) ? netDevs[i].getIP6Addrs() : netDevs[i].getIPAddrs(); var addrs = (family == 6) ? netDevs[i].getIP6Addrs() : netDevs[i].getIPAddrs();