From dbaf8f3b89678de481a3214728dbec99df4ac57e Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Thu, 13 Oct 2022 18:39:12 +0000 Subject: Fix empty password string being submitted to server - Fix reveal password not working Signed-off-by: Christopher Ng --- core/src/components/login/LoginForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/src/components/login/LoginForm.vue b/core/src/components/login/LoginForm.vue index 2ab4035ae65..c1fd1e23461 100644 --- a/core/src/components/login/LoginForm.vue +++ b/core/src/components/login/LoginForm.vue @@ -71,7 +71,7 @@ name="password" :label-visible="true" :class="{shake: invalidPassword}" - :value="password" + :value.sync="password" :spellchecking="false" autocapitalize="none" :autocomplete="autoCompleteAllowed ? 'current-password' : 'off'" -- cgit v1.2.3