diff options
Diffstat (limited to 'packages/client/src/components/forgot-password.vue')
| -rw-r--r-- | packages/client/src/components/forgot-password.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/components/forgot-password.vue b/packages/client/src/components/forgot-password.vue index 19c1f23c85..6ed89d45d7 100644 --- a/packages/client/src/components/forgot-password.vue +++ b/packages/client/src/components/forgot-password.vue @@ -9,12 +9,12 @@ <form v-if="instance.enableEmail" class="bafeceda" @submit.prevent="onSubmit"> <div class="main _formRoot"> - <MkInput v-model="username" class="_formBlock" type="text" pattern="^[a-zA-Z0-9_]+$" spellcheck="false" autofocus required> + <MkInput v-model="username" class="_formBlock" type="text" pattern="^[a-zA-Z0-9_]+$" :spellcheck="false" autofocus required> <template #label>{{ i18n.ts.username }}</template> <template #prefix>@</template> </MkInput> - <MkInput v-model="email" class="_formBlock" type="email" spellcheck="false" required> + <MkInput v-model="email" class="_formBlock" type="email" :spellcheck="false" required> <template #label>{{ i18n.ts.emailAddress }}</template> <template #caption>{{ i18n.ts._forgotPassword.enterEmail }}</template> </MkInput> |