From 88add83cf1ea4e979210e71c3aafd187700c7130 Mon Sep 17 00:00:00 2001 From: mertmit Date: Mon, 23 Jan 2023 17:26:41 +0300 Subject: [PATCH] fix: show empty filtering for select options Signed-off-by: mertmit --- packages/nc-gui/utils/filterUtils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nc-gui/utils/filterUtils.ts b/packages/nc-gui/utils/filterUtils.ts index f48c16d82e..f3454b0bc9 100644 --- a/packages/nc-gui/utils/filterUtils.ts +++ b/packages/nc-gui/utils/filterUtils.ts @@ -41,13 +41,13 @@ export const comparisonOpList: { text: 'is empty', value: 'empty', ignoreVal: true, - excludedTypes: [UITypes.Checkbox, UITypes.Rating, UITypes.MultiSelect, UITypes.SingleSelect], + excludedTypes: [UITypes.Checkbox, UITypes.Rating], }, { text: 'is not empty', value: 'notempty', ignoreVal: true, - excludedTypes: [UITypes.Checkbox, UITypes.Rating, UITypes.MultiSelect, UITypes.SingleSelect], + excludedTypes: [UITypes.Checkbox, UITypes.Rating], }, { text: 'is null',