diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-12 21:44:04 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-12 21:44:04 +0900 |
| commit | 5149be4b1b85cf68a9893ff5ebac841696ccc1a9 (patch) | |
| tree | 415137e1dc8616c02944d7f3d0d69d61f3bb014e /src | |
| parent | Merge pull request #2889 from syuilo/greenkeeper/@types/elasticsearch-5.0.27 (diff) | |
| download | misskey-5149be4b1b85cf68a9893ff5ebac841696ccc1a9.tar.gz misskey-5149be4b1b85cf68a9893ff5ebac841696ccc1a9.tar.bz2 misskey-5149be4b1b85cf68a9893ff5ebac841696ccc1a9.zip | |
Fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/views/components/note.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index 3ffa204472..6d54c9a93f 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -41,7 +41,7 @@ <a class="location" v-if="appearNote.geo" :href="`https://maps.google.com/maps?q=${appearNote.geo.coordinates[1]},${appearNote.geo.coordinates[0]}`" target="_blank">%fa:map-marker-alt% %i18n:@location%</a> <div class="renote" v-if="appearNote.renote"><mk-note-preview :note="appearNote.renote"/></div> </div> - <span class="app" v-if="appearNote.app">via <b>{{ appearNote.apappearNote.name }}</b></span> + <span class="app" v-if="appearNote.app">via <b>{{ appearNote.app.name }}</b></span> </div> <footer v-if="appearNote.deletedAt == null"> <mk-reactions-viewer :note="appearNote" ref="reactionsViewer"/> |