From 792864f8ab21dc178c1836a8a0d4fe2d305cc142 Mon Sep 17 00:00:00 2001 From: Denis Date: Mon, 2 Aug 2021 19:56:27 +0300 Subject: [PATCH] fix(item-sliding): opening item while other items are open no longer requires multiple swipes (#23683) resolves #21579 --- core/src/components/item-sliding/item-sliding.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/components/item-sliding/item-sliding.tsx b/core/src/components/item-sliding/item-sliding.tsx index b12a0d319a..487fb72679 100644 --- a/core/src/components/item-sliding/item-sliding.tsx +++ b/core/src/components/item-sliding/item-sliding.tsx @@ -247,7 +247,6 @@ export class ItemSliding implements ComponentInterface { const selected = openSlidingItem; if (selected && selected !== this.el) { this.closeOpened(); - return false; } return !!(this.rightOptions || this.leftOptions);