diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-10-26 19:29:37 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-10-26 19:29:37 +0900 |
| commit | cd77404006bf0ccef4744353610e1233b337b551 (patch) | |
| tree | d53b8e3b2e467150213a02fdb7b8c193971ed7f1 /packages/frontend/src/components | |
| parent | Bump version to 2025.10.2-alpha.0 (diff) | |
| download | misskey-cd77404006bf0ccef4744353610e1233b337b551.tar.gz misskey-cd77404006bf0ccef4744353610e1233b337b551.tar.bz2 misskey-cd77404006bf0ccef4744353610e1233b337b551.zip | |
fix tooltip text
Diffstat (limited to 'packages/frontend/src/components')
| -rw-r--r-- | packages/frontend/src/components/MkPostForm.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue index afa70cdbae..664ff2d469 100644 --- a/packages/frontend/src/components/MkPostForm.vue +++ b/packages/frontend/src/components/MkPostForm.vue @@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only <header :class="$style.header"> <div :class="$style.headerLeft"> <button v-if="!fixed" :class="$style.cancel" class="_button" @click="cancel"><i class="ti ti-x"></i></button> - <button v-click-anime v-tooltip="i18n.ts.switchAccount" :class="$style.account" class="_button" @click="openAccountMenu"> + <button v-click-anime v-tooltip="i18n.ts.account" :class="$style.account" class="_button" @click="openAccountMenu"> <img :class="$style.avatar" :src="(postAccount ?? $i).avatarUrl" style="border-radius: 100%;"/> </button> </div> |