diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-18 14:14:30 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-18 14:14:30 +0900 |
| commit | 21f77e484fc2cf23cc8b7e11c2a694c9a9951f84 (patch) | |
| tree | fc0c94463c484b6742e5925b0d30f5beeb8d5b4c /src/client | |
| parent | Merge branch 'master' of https://github.com/syuilo/misskey (diff) | |
| download | misskey-21f77e484fc2cf23cc8b7e11c2a694c9a9951f84.tar.gz misskey-21f77e484fc2cf23cc8b7e11c2a694c9a9951f84.tar.bz2 misskey-21f77e484fc2cf23cc8b7e11c2a694c9a9951f84.zip | |
Fix bug
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/desktop/views/components/note-detail.sub.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/note-detail.sub.vue b/src/client/app/desktop/views/components/note-detail.sub.vue index 16bc2a1d98..cbea77ae74 100644 --- a/src/client/app/desktop/views/components/note-detail.sub.vue +++ b/src/client/app/desktop/views/components/note-detail.sub.vue @@ -17,7 +17,7 @@ </header> <div class="body"> <mk-note-html v-if="note.text" :text="note.text" :i="os.i" :class="$style.text"/> - <div class="media" v-if="note.media > 0"> + <div class="media" v-if="note.mediaIds.length > 0"> <mk-media-list :media-list="note.media"/> </div> </div> |