Merge pull request #3190 from NoelDeMartin/MOBILE-3153

MOBILE-3153 core: Fix swipe tour in tablets
main
Dani Palou 2022-03-17 17:21:34 +01:00 committed by GitHub
commit d90b6b66f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ export class CoreSwipeNavigationDirective implements AfterViewInit, OnDestroy {
const items = source.getItems() ?? []; const items = source.getItems() ?? [];
if (items.length < 2) { if (!this.enabled || items.length < 2) {
return; return;
} }