From 61e236f594bbdba19b01c207e2d51ed1baa8cda6 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sun, 19 Feb 2023 20:50:21 +0100 Subject: [PATCH] fix: correctly set autocomplet attribute on login form inputs --- app/src/views/Login.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/src/views/Login.vue b/app/src/views/Login.vue index 79955243..c4a5e6f0 100644 --- a/app/src/views/Login.vue +++ b/app/src/views/Login.vue @@ -47,14 +47,16 @@ export default { username: { label: this.$i18n.t('user_username'), props: { - id: 'username' + id: 'username', + autocomplete: 'username' } }, password: { label: this.$i18n.t('password'), props: { id: 'password', - type: 'password' + type: 'password', + autocomplete: 'current-password' } } }