We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 137ccd0 commit 13d847bCopy full SHA for 13d847b
src/components/common/navbar/NavbarComponent.vue
@@ -99,9 +99,9 @@ const onTouchEnd = (e: TouchEvent) => {
99
case SwipeDirection.Up:
100
isHover.value = false;
101
return swipe;
102
- case SwipeDirection.Right:
103
- return nextRoute.value ? navigate(nextRoute.value) : undefined;
104
case SwipeDirection.Left:
+ return nextRoute.value ? navigate(nextRoute.value) : undefined;
+ case SwipeDirection.Right:
105
return prevRoute.value ? navigate(prevRoute.value) : undefined;
106
default:
107
Logger.warn('Unknown swipe direction:', swipe);
0 commit comments