From f36d1aca7afe94e57923810906369c15877c6d9b Mon Sep 17 00:00:00 2001 From: ljf Date: Sun, 12 Sep 2021 23:56:55 +0200 Subject: [PATCH] [fix] linter --- app/src/views/user/UserEdit.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/views/user/UserEdit.vue b/app/src/views/user/UserEdit.vue index 1da62dec..11135820 100644 --- a/app/src/views/user/UserEdit.vue +++ b/app/src/views/user/UserEdit.vue @@ -205,12 +205,12 @@ export default { label: this.$i18n.t('password'), description: this.$i18n.t('good_practices_about_user_password'), descriptionVariant: 'warning', - props: { id: 'change_password', type: 'password', placeholder: '••••••••', autocomplete: "new-password" } + props: { id: 'change_password', type: 'password', placeholder: '••••••••', autocomplete: 'new-password' } }, confirmation: { label: this.$i18n.t('password_confirmation'), - props: { id: 'confirmation', type: 'password', placeholder: '••••••••', autocomplete: "new-password" } + props: { id: 'confirmation', type: 'password', placeholder: '••••••••', autocomplete: 'new-password' } } } }