We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a247ac5 commit c2f1465Copy full SHA for c2f1465
1 file changed
core/src/components/item-sliding/item-sliding.tsx
@@ -812,7 +812,7 @@ export class ItemSliding implements ComponentInterface {
812
813
if (
814
hasExpandable &&
815
- (extraWidth >= IONIC_EXPAND_TRIGGER || Math.abs(velocityX) > IONIC_FULL_SWIPE_VELOCITY_THRESHOLD)
+ (extraWidth >= IONIC_EXPAND_TRIGGER || (extraWidth > 0 && Math.abs(velocityX) > IONIC_FULL_SWIPE_VELOCITY_THRESHOLD))
816
) {
817
this.animateIonicFullSwipe(activeDirection).catch(() => {
818
if (this.gesture) {
0 commit comments