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) => {