fix: ensure delta value is absolute in Drawer component
The fix ensures that the calculation of the 'movement' value in the Drawer component doesn't result in a negative number. The division by 'dragState.delta' is now divided by the absolute value to prevent faulty calculations.
This commit is contained in:
parent
7b17e6df9b
commit
ffe49ff90f
@ -261,7 +261,7 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
|
|||||||
movement < 0)
|
movement < 0)
|
||||||
) {
|
) {
|
||||||
movement =
|
movement =
|
||||||
movement / (dragState.delta === 0 ? 1 : dragState.delta);
|
movement / Math.abs(dragState.delta === 0 ? 1 : dragState.delta);
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
...prev,
|
...prev,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user