summaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2022-10-13 18:39:12 +0000
committerChristopher Ng <chrng8@gmail.com>2022-10-13 18:42:21 +0000
commitdbaf8f3b89678de481a3214728dbec99df4ac57e (patch)
treed7d7b8fc5e94cb183372930bdc5e5ea47c2fdffc /core/src
parent4d306fc647bec114648bfd4c66da8adfc4c8a9cf (diff)
downloadnextcloud-server-dbaf8f3b89678de481a3214728dbec99df4ac57e.tar.gz
nextcloud-server-dbaf8f3b89678de481a3214728dbec99df4ac57e.zip
Fix empty password string being submitted to server
- Fix reveal password not working Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core/src')
-rw-r--r--core/src/components/login/LoginForm.vue2
1 files changed, 1 insertions, 1 deletions
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'"