From 0d68c628ca6d7b1c87975b7a98b38da6368e206b Mon Sep 17 00:00:00 2001 From: neverland Date: Fri, 19 Jul 2019 10:15:23 +0800 Subject: [PATCH] [improvement] SwipeCell: should stop event propagation (#3898) --- src/swipe-cell/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swipe-cell/index.js b/src/swipe-cell/index.js index aecd512a9..96cdb847f 100644 --- a/src/swipe-cell/index.js +++ b/src/swipe-cell/index.js @@ -121,7 +121,7 @@ export default createComponent({ this.touchMove(event); if (this.direction === 'horizontal') { - preventDefault(event); + preventDefault(event, true); this.swipeMove(this.deltaX + this.startOffset); } },