Skip to content
Snippets Groups Projects
Commit fe08d2dd authored by Dietmar Theinert's avatar Dietmar Theinert
Browse files

[SI-2944] - correct filter handling so empty cell values will also be found


Signed-off-by: default avatardtheinert <dietmar.theinert@pta.de>
parent 9dec2de9
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ export class FuzzySetFilterComponent extends SetFilterComponent {
} else {
// is numeric or null
if (!nodeValue) {
passed = nodeValue === null && itemKey === 'null';
passed = (nodeValue === null || nodeValue === '') && itemKey === 'null';
} else {
passed = nodeValue.toString() === itemKey;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment