From 68fdc80b6a1c3a1fde0d6112e565f7e64f963a1d Mon Sep 17 00:00:00 2001 From: Anders Bjerner Date: Fri, 7 May 2021 10:37:44 +0200 Subject: [PATCH] Added target="_blank" to "Update available" link --- src/Umbraco.Web.UI.Client/src/main.controller.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/main.controller.js b/src/Umbraco.Web.UI.Client/src/main.controller.js index d21331f106..a5df6904e5 100644 --- a/src/Umbraco.Web.UI.Client/src/main.controller.js +++ b/src/Umbraco.Web.UI.Client/src/main.controller.js @@ -118,7 +118,8 @@ function MainController($scope, $location, appState, treeService, notificationsS message: "Click to download", sticky: true, type: "info", - url: update.url + url: update.url, + target: "_blank" }; notificationsService.add(notification); }