mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
fix: correctly set autocomplet attribute on login form inputs
This commit is contained in:
parent
ac0cf3dc3c
commit
61e236f594
1 changed files with 4 additions and 2 deletions
|
@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue