diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-07-25 01:36:39 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-07-25 01:36:39 +0900 |
| commit | 9c30b23358699a530f2bcb0f5ae6efe17146bcb3 (patch) | |
| tree | d57bb7911e273fcfed0de31c89101934d0ea2c8b /src/client/components/note.vue | |
| parent | Fix #6566 (#6577) (diff) | |
| download | sharkey-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.vue | 2 |
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"/> |