1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-20 07:49:22 -05:00
This commit is contained in:
syuilo 2018-05-28 15:04:47 +09:00
parent 858efafe77
commit f0c031ecdb
2 changed files with 2 additions and 2 deletions
src/client/app
common/views/components
desktop/views/components

View file

@ -13,7 +13,7 @@
</div>
</header>
<div class="text">
<mk-note-html :text="note.text"/>
<mk-note-html v-if="note.text" :text="note.text"/>
</div>
</div>
</div>

View file

@ -4,7 +4,7 @@
<span v-if="note.isHidden" style="opacity: 0.5">%i18n:@private%</span>
<span v-if="note.deletedAt" style="opacity: 0.5">%i18n:@deleted%</span>
<a class="reply" v-if="note.replyId">%fa:reply%</a>
<mk-note-html :text="note.text" :i="$store.state.i"/>
<mk-note-html v-if="note.text" :text="note.text" :i="$store.state.i"/>
<a class="rp" v-if="note.renoteId" :href="`/note:${note.renoteId}`">RP: ...</a>
</div>
<details v-if="note.media.length > 0">