From 853b264cc91a9dd3d669aea643630b0793b17d77 Mon Sep 17 00:00:00 2001 From: Julius Knorr Date: Wed, 5 Nov 2025 21:26:13 +0100 Subject: [PATCH] fix: Force direct login after password reset With SSO setups users may otherwise be redirected to the IdP directly instead of the regular login form that they reset the password for Signed-off-by: Julius Knorr --- core/src/views/Login.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/views/Login.vue b/core/src/views/Login.vue index 9872890285f..338be5d3151 100644 --- a/core/src/views/Login.vue +++ b/core/src/views/Login.vue @@ -163,7 +163,7 @@ export default { methods: { passwordResetFinished() { - window.location.href = generateUrl('login') + window.location.href = generateUrl('login') + '?direct=1' }, }, }