From 6bb39cfa85766f9232b3b94d89078de6de1c61d0 Mon Sep 17 00:00:00 2001 From: Felipe Imperio Date: Mon, 2 Dec 2024 15:33:05 -0800 Subject: [PATCH] fix: fixing isBetweenSliderRowValues logic --- src/entities/conditional-logic/model/conditions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entities/conditional-logic/model/conditions.ts b/src/entities/conditional-logic/model/conditions.ts index 6e6cf9948..3513b5032 100644 --- a/src/entities/conditional-logic/model/conditions.ts +++ b/src/entities/conditional-logic/model/conditions.ts @@ -357,7 +357,7 @@ export const isBetweenSliderRowValues = ( minValue: number, maxValue: number, ) => { - return rowValue !== null && rowValue >= minValue && rowValue <= maxValue; + return rowValue !== null && rowValue > minValue && rowValue < maxValue; }; export const isLessThanSliderRow = (rowValue: number | null, value: number) => {