add is not operand on numeric fields (#16299)

closes https://github.com/twentyhq/twenty/issues/16162
This commit is contained in:
nitin
2025-12-04 18:55:24 +05:30
committed by GitHub
parent 2f36c2e82e
commit f0f648181e
8 changed files with 47 additions and 0 deletions
@@ -28,6 +28,7 @@ export const FILTER_OPERANDS_MAP = {
],
NUMBER: [
ViewFilterOperand.IS,
ViewFilterOperand.IS_NOT,
ViewFilterOperand.GREATER_THAN_OR_EQUAL,
ViewFilterOperand.LESS_THAN_OR_EQUAL,
...emptyOperands,
@@ -64,6 +65,7 @@ export const FILTER_OPERANDS_MAP = {
UUID: [ViewFilterOperand.IS, ViewFilterOperand.IS_NOT],
NUMERIC: [
ViewFilterOperand.IS,
ViewFilterOperand.IS_NOT,
ViewFilterOperand.GREATER_THAN_OR_EQUAL,
ViewFilterOperand.LESS_THAN_OR_EQUAL,
...emptyOperands,