diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-10 15:29:30 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-10 15:29:30 +0900 |
| commit | f4f8debb92050363e54601b5bd257d413672e0b0 (patch) | |
| tree | d6584b89b4de07eeb9ed4da59e47f8cc8325b8fb /src | |
| parent | Update html comment (diff) | |
| download | misskey-f4f8debb92050363e54601b5bd257d413672e0b0.tar.gz misskey-f4f8debb92050363e54601b5bd257d413672e0b0.tar.bz2 misskey-f4f8debb92050363e54601b5bd257d413672e0b0.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/components/post-form.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/post-form.vue b/src/client/components/post-form.vue index 969f8563a4..82d28f30e8 100644 --- a/src/client/components/post-form.vue +++ b/src/client/components/post-form.vue @@ -45,7 +45,7 @@ <button class="_button" @click="togglePoll" :class="{ active: poll }" v-tooltip="$ts.poll"><i class="fas fa-poll-h"></i></button> <button class="_button" @click="useCw = !useCw" :class="{ active: useCw }" v-tooltip="$ts.useCw"><i class="fas fa-eye-slash"></i></button> <button class="_button" @click="insertMention" v-tooltip="$ts.mention"><i class="fas fa-at"></i></button> - <button class="_button" @click="withHashtags = !withHashtags" v-tooltip="$ts.hashtags"><i class="fas fa-hashtag"></i></button> + <button class="_button" @click="withHashtags = !withHashtags" :class="{ active: withHashtags }" v-tooltip="$ts.hashtags"><i class="fas fa-hashtag"></i></button> <button class="_button" @click="insertEmoji" v-tooltip="$ts.emoji"><i class="fas fa-laugh-squint"></i></button> <button class="_button" @click="showActions" v-tooltip="$ts.plugin" v-if="postFormActions.length > 0"><i class="fas fa-plug"></i></button> </footer> |