summaryrefslogtreecommitdiff
path: root/src/client/components/note.vue
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-07-25 01:36:39 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-07-25 01:36:39 +0900
commit9c30b23358699a530f2bcb0f5ae6efe17146bcb3 (patch)
treed57bb7911e273fcfed0de31c89101934d0ea2c8b /src/client/components/note.vue
parentFix #6566 (#6577) (diff)
downloadsharkey-9c30b23358699a530f2bcb0f5ae6efe17146bcb3.tar.gz
sharkey-9c30b23358699a530f2bcb0f5ae6efe17146bcb3.tar.bz2
sharkey-9c30b23358699a530f2bcb0f5ae6efe17146bcb3.zip
refactor(client): Use v-t for i18n
Diffstat (limited to 'src/client/components/note.vue')
-rw-r--r--src/client/components/note.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/note.vue b/src/client/components/note.vue
index 63a803c7f4..062ca50188 100644
--- a/src/client/components/note.vue
+++ b/src/client/components/note.vue
@@ -80,7 +80,7 @@
<fa :icon="faEllipsisH"/>
</button>
</footer>
- <div class="deleted" v-if="appearNote.deletedAt != null">{{ $t('deleted') }}</div>
+ <div class="deleted" v-if="appearNote.deletedAt != null" v-t="'deleted'"></div>
</div>
</article>
<x-sub v-for="note in replies" :key="note.id" :note="note" class="reply" :detail="true"/>