diff options
| author | nico <nico@lifeisabug.com> | 2018-10-21 21:47:12 +0200 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2018-10-22 04:47:12 +0900 |
| commit | 2914f0f65d9d59a4077019c991cd675d248191b8 (patch) | |
| tree | 50591e01bae7d22b66eb44d8f39b7f19ea9bec47 /src | |
| parent | Implement per user drive stats (diff) | |
| download | misskey-2914f0f65d9d59a4077019c991cd675d248191b8.tar.gz misskey-2914f0f65d9d59a4077019c991cd675d248191b8.tar.bz2 misskey-2914f0f65d9d59a4077019c991cd675d248191b8.zip | |
#2939 (#2974)
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/post-form.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/post-form.vue b/src/client/app/desktop/views/components/post-form.vue index 5301f19158..3835f7228e 100644 --- a/src/client/app/desktop/views/components/post-form.vue +++ b/src/client/app/desktop/views/components/post-form.vue @@ -12,7 +12,7 @@ </div> <div class="hashtags" v-if="recentHashtags.length > 0 && $store.state.settings.suggestRecentHashtags"> <b>%i18n:@recent-tags%:</b> - <a v-for="tag in recentHashtags.slice(0, 5)" @click="addTag(tag)" title="%@click-to-tagging%">#{{ tag }}</a> + <a v-for="tag in recentHashtags.slice(0, 5)" @click="addTag(tag)" title="%i18n:@click-to-tagging%">#{{ tag }}</a> </div> <input v-show="useCw" v-model="cw" placeholder="%i18n:@annotations%"> <textarea :class="{ with: (files.length != 0 || poll) }" |