firewall: undefined is also "*"

This commit is contained in:
Franco Fichtner 2026-02-05 08:34:43 +01:00
parent 4912a671be
commit 700f590383

View file

@ -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 {