fix: spellcheck is boolean not string

This commit is contained in:
Johann150 2022-07-04 10:35:27 +02:00
parent b438a1935d
commit e0e42a6425
No known key found for this signature in database
GPG key ID: 9EE6577A2A06F8F1
7 changed files with 13 additions and 13 deletions

View file

@ -3,7 +3,7 @@
<h1>Welcome to Misskey!</h1>
<div class="_formRoot">
<p>{{ $ts.intro }}</p>
<MkInput v-model="username" pattern="^[a-zA-Z0-9_]{1,20}$" spellcheck="false" required data-cy-admin-username class="_formBlock">
<MkInput v-model="username" pattern="^[a-zA-Z0-9_]{1,20}$" :spellcheck="false" required data-cy-admin-username class="_formBlock">
<template #label>{{ $ts.username }}</template>
<template #prefix>@</template>
<template #suffix>@{{ host }}</template>