From b1ebe7df31d0752556098f3a736e3cee5ece3eba Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Thu, 23 Feb 2023 13:09:54 +0800 Subject: [PATCH] fix(nc-gui): ignoreVal on one_month_from_now & number_of_days_from_now --- 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 3ba4234676..45f7819543 100644 --- a/packages/nc-gui/utils/filterUtils.ts +++ b/packages/nc-gui/utils/filterUtils.ts @@ -263,7 +263,7 @@ export const comparisonSubOpList: { { text: 'one month from now', value: 'one_month_from_now', - ignoreVal: false, + ignoreVal: true, includedTypes: [UITypes.Date, UITypes.DateTime], }, { @@ -275,7 +275,7 @@ export const comparisonSubOpList: { { text: 'number of days from now', value: 'number_of_days_from_now', - ignoreVal: true, + ignoreVal: false, includedTypes: [UITypes.Date, UITypes.DateTime], }, {