mirror of
https://github.com/opnsense/core.git
synced 2026-02-18 18:18:13 -05:00
firewall: undefined is also "*"
This commit is contained in:
parent
4912a671be
commit
700f590383
1 changed files with 2 additions and 3 deletions
|
|
@ -322,9 +322,8 @@
|
|||
}
|
||||
|
||||
if (
|
||||
row[column.id] !== '' &&
|
||||
row[column.id] !== 'any' &&
|
||||
row[column.id] !== 'None'
|
||||
row[column.id] !== undefined &&
|
||||
!['', 'any', 'None'].includes(row[column.id])
|
||||
) {
|
||||
return row[column.id];
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue