From 3776e77b974980d1e76f1aea42c2210909adc379 Mon Sep 17 00:00:00 2001 From: Smoothex Date: Thu, 9 Dec 2021 10:13:17 +0100 Subject: [PATCH] open login as a secure browser tab --- frontend/src/store/modules/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/store/modules/auth.js b/frontend/src/store/modules/auth.js index dde4d61..dedf1d5 100644 --- a/frontend/src/store/modules/auth.js +++ b/frontend/src/store/modules/auth.js @@ -47,7 +47,7 @@ const actions = { * Opens the given url in the default browser. */ async openDefaultBrowser(_, strUrl) { - window.open(strUrl, '_blank'); + window.open(strUrl, '_blank', 'noopener noreferrer nofollow'); }, /**