1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-13 11:04:15 +02:00

fix: spellcheck is boolean not string

This commit is contained in:
Johann150
2022-07-04 10:35:27 +02:00
parent b438a1935d
commit e0e42a6425
7 changed files with 13 additions and 13 deletions

View File

@@ -55,7 +55,7 @@
<li>{{ i18n.ts._2fa.step2 }}<br><img :src="twoFactorData.qr"><p>{{ $ts._2fa.step2Url }}<br>{{ twoFactorData.url }}</p></li>
<li>
{{ i18n.ts._2fa.step3 }}<br>
<MkInput v-model="token" type="text" pattern="^[0-9]{6}$" autocomplete="off" spellcheck="false"><template #label>{{ i18n.ts.token }}</template></MkInput>
<MkInput v-model="token" type="text" pattern="^[0-9]{6}$" autocomplete="off" :spellcheck="false"><template #label>{{ i18n.ts.token }}</template></MkInput>
<MkButton primary @click="submit">{{ i18n.ts.done }}</MkButton>
</li>
</ol>