feat(Data Table Node): Show 'Is False' / 'Is True' condition on boolean columns (no-changelog) (#19478)

This commit is contained in:
Jaakko Husso
2025-09-12 17:54:54 +03:00
committed by GitHub
parent 47f1d14b66
commit 1a5fd5a238
5 changed files with 182 additions and 74 deletions

View File

@@ -10,7 +10,7 @@ export type FilterType = typeof ANY_CONDITION | typeof ALL_CONDITIONS;
export type FieldEntry =
| {
keyName: string;
condition: 'isEmpty' | 'isNotEmpty';
condition: 'isEmpty' | 'isNotEmpty' | 'isTrue' | 'isFalse';
}
| {
keyName: string;