fix(frontend): Chromeのパスワードマネージャーのバグの回避 (MisskeyIO#482)

Chromeのバグでtype=searchのinputボックスを全てパスワードフィールド扱いにしているので一旦type=textに
This commit is contained in:
まっちゃとーにゅ 2024-02-27 08:16:48 +09:00 committed by GitHub
parent 4f8190c2bf
commit 72546ecc66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 12 additions and 12 deletions

View file

@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<div :class="$style.root">
<input v-model="query" class="mk-input-search" :class="$style.input" type="search" :placeholder="q">
<input v-model="query" class="mk-input-search" :class="$style.input" type="text" :placeholder="q">
<button :class="$style.button" @click="search"><i class="ti ti-search"></i> {{ i18n.ts.searchByGoogle }}</button>
</div>
</template>