Merge pull request #4652 from TDT-AG/pr/20201211-luci-app-firewall
luci-app-firewall: map proto '*' and 'any' to all on rule config
This commit is contained in:
commit
b4eeb1829e
1 changed files with 3 additions and 0 deletions
|
@ -522,6 +522,9 @@ return baseclass.extend({
|
||||||
}
|
}
|
||||||
}, this));
|
}, this));
|
||||||
|
|
||||||
|
if (cfgvalue == '*' || cfgvalue == 'any' || cfgvalue == 'all')
|
||||||
|
cfgvalue = 'all';
|
||||||
|
|
||||||
return cfgvalue;
|
return cfgvalue;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue