From 6094c9dc395d366b40c0e3524b6b2c97aed53fda Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Sun, 18 Aug 2019 19:47:32 +0200 Subject: [PATCH 1/3] Send new password instead of empty string Signed-off-by: Daniel Kesselberg --- core/src/components/login/UpdatePassword.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/login/UpdatePassword.vue b/core/src/components/login/UpdatePassword.vue index 5ee01772df..3b5ac32133 100644 --- a/core/src/components/login/UpdatePassword.vue +++ b/core/src/components/login/UpdatePassword.vue @@ -103,7 +103,7 @@ try { const { data } = await Axios.post(this.resetPasswordTarget, { - password: this.user, + password: this.password, proceed: this.proceed }) if (data && data.status === 'success') { From 273cd3870d8d64eadeb45f245109e571e72c508f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 19 Aug 2019 09:26:08 +0200 Subject: [PATCH 2/3] Force proper action for login form MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- core/src/components/login/LoginForm.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/components/login/LoginForm.vue b/core/src/components/login/LoginForm.vue index 5574d65a05..5c2b524248 100644 --- a/core/src/components/login/LoginForm.vue +++ b/core/src/components/login/LoginForm.vue @@ -22,6 +22,7 @@