From aaa300266b23af2e72c30ec86ab93fc78b4f153a Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Thu, 13 May 2021 08:47:57 +0200 Subject: [PATCH] MOBILE-3320 mainmenu: Fix go back to root before confirming --- src/core/features/mainmenu/pages/menu/menu.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/features/mainmenu/pages/menu/menu.ts b/src/core/features/mainmenu/pages/menu/menu.ts index 36a197501..48c0f45f9 100644 --- a/src/core/features/mainmenu/pages/menu/menu.ts +++ b/src/core/features/mainmenu/pages/menu/menu.ts @@ -183,6 +183,7 @@ export class CoreMainMenuPage implements OnInit, OnDestroy { // Ask the user if he wants to go back to the root page of the tab. e.preventDefault(); e.stopPropagation(); + e.stopImmediatePropagation(); try { const tab = this.tabs.find((tab) => tab.page == page);