diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-03-21 13:19:42 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-03-21 13:19:42 +0900 |
| commit | 8e0b088deb3be14d2f725c2245a0e8c52afa6c13 (patch) | |
| tree | 741feea3ea87c9aa05d6ab070c70c0ed129b45de /src/client | |
| parent | Fix bug (diff) | |
| download | misskey-8e0b088deb3be14d2f725c2245a0e8c52afa6c13.tar.gz misskey-8e0b088deb3be14d2f725c2245a0e8c52afa6c13.tar.bz2 misskey-8e0b088deb3be14d2f725c2245a0e8c52afa6c13.zip | |
:art:
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/pages/note.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/pages/note.vue b/src/client/pages/note.vue index 5f57d0d999..387b0cff31 100644 --- a/src/client/pages/note.vue +++ b/src/client/pages/note.vue @@ -9,12 +9,11 @@ </portal> <div v-if="note"> - <mk-remote-caution v-if="note.user.host != null" :href="note.url" style="margin-bottom: var(--margin)"/> - <button class="_panel _button" v-if="hasNext && !showNext" @click="showNext = true" style="margin: 0 auto var(--margin) auto;"><fa :icon="faChevronUp"/></button> <x-notes v-if="showNext" ref="next" :pagination="next"/> <hr v-if="showNext"/> + <mk-remote-caution v-if="note.user.host != null" :href="note.url" style="margin-bottom: var(--margin)"/> <x-note :note="note" :key="note.id" :detail="true"/> <div v-if="error"> <mk-error @retry="fetch()"/> |