Skip to content
Snippets Groups Projects
Commit 60da49f8 authored by Sorin Davidoi's avatar Sorin Davidoi Committed by Eugen Rochko
Browse files

fix(components/columns_area): Increase delta for swipe detection (#4037)

parent d1d94216
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ export default class ColumnsArea extends ImmutablePureComponent {
if (singleColumn) {
return (
<ReactSwipeable onSwipedLeft={this.handleLeftSwipe} onSwipedRight={this.handleRightSwipe} className='columns-area'>
<ReactSwipeable onSwipedLeft={this.handleLeftSwipe} onSwipedRight={this.handleRightSwipe} delta={30} className='columns-area'>
{children}
</ReactSwipeable>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment