From 1842c78c5d9d00a136eba5a25811fe1a14aaa969 Mon Sep 17 00:00:00 2001 From: Warren Date: Wed, 8 Aug 2018 15:26:25 +0100 Subject: [PATCH] Fix for navigation service for hideDialog(true) which is used to hide the current dialog & show the right click context/more options menu which was failing --- .../src/common/services/navigation.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/services/navigation.service.js b/src/Umbraco.Web.UI.Client/src/common/services/navigation.service.js index 74e8f7d1a5..5872649770 100644 --- a/src/Umbraco.Web.UI.Client/src/common/services/navigation.service.js +++ b/src/Umbraco.Web.UI.Client/src/common/services/navigation.service.js @@ -623,7 +623,7 @@ function navigationService($rootScope, $route, $routeParams, $log, $location, $q setMode("default"); if(showMenu){ - this.showMenu(undefined, { skipDefault: true, node: appState.getMenuState("currentNode") }); + this.showMenu({ skipDefault: true, node: appState.getMenuState("currentNode") }); } }, /**