From 438b68bc88f8f00bba19a342ded33d93386a61fa Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Wed, 20 Apr 2022 14:12:14 +0200 Subject: [PATCH] fix(ui) - filter option text change --- frontend/app/constants/filterOptions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/app/constants/filterOptions.js b/frontend/app/constants/filterOptions.js index 28b29d0a9..d584a7b24 100644 --- a/frontend/app/constants/filterOptions.js +++ b/frontend/app/constants/filterOptions.js @@ -6,7 +6,7 @@ export const options = [ { key: 'onAny', text: 'on any', value: 'onAny' }, { key: 'is', text: 'is', value: 'is' }, { key: 'isAny', text: 'is any', value: 'isAny' }, - { key: 'isAnyPage', text: 'is any page', value: 'isAny' }, + { key: 'inAnyPage', text: 'in any page', value: 'isAny' }, { key: 'isNot', text: 'is not', value: 'isNot' }, { key: 'startsWith', text: 'starts with', value: 'startsWith' }, { key: 'endsWith', text: 'ends with', value: 'endsWith' }, @@ -33,7 +33,7 @@ export const options = [ const filterKeys = ['is', 'isNot']; const stringFilterKeys = ['is', 'isAny', 'isNot', 'contains', 'startsWith', 'endsWith', 'notContains']; -const stringFilterKeysPerformance = ['is', 'isAnyPage', 'isNot', 'contains', 'startsWith', 'endsWith', 'notContains']; +const stringFilterKeysPerformance = ['is', 'inAnyPage', 'isNot', 'contains', 'startsWith', 'endsWith', 'notContains']; const targetFilterKeys = ['on', 'notOn', 'onAny', 'contains', 'startsWith', 'endsWith', 'notContains']; const signUpStatusFilterKeys = ['isSignedUp', 'notSignedUp']; const rangeFilterKeys = ['before', 'after', 'on', 'inRange', 'notInRange', 'withInLast', 'notWithInLast'];