summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-04-24 22:52:07 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-04-24 22:52:07 +0900
commit7bfc41c6e1100ce6efa8b5f4dce3f9868f7a6128 (patch)
treea6132ebe311fd12e53695c4d0992fba0e32dd65d /src
parentGallery (#7194) (diff)
downloadsharkey-7bfc41c6e1100ce6efa8b5f4dce3f9868f7a6128.tar.gz
sharkey-7bfc41c6e1100ce6efa8b5f4dce3f9868f7a6128.tar.bz2
sharkey-7bfc41c6e1100ce6efa8b5f4dce3f9868f7a6128.zip
fix bug
Diffstat (limited to 'src')
-rw-r--r--src/client/pages/timeline.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/pages/timeline.vue b/src/client/pages/timeline.vue
index 5660d0099e..966146d92b 100644
--- a/src/client/pages/timeline.vue
+++ b/src/client/pages/timeline.vue
@@ -18,6 +18,7 @@
<button class="_button tab" @click="chooseList" :class="{ active: src === 'list' }" v-tooltip="$ts.lists"><i class="fas fa-list-ul"></i></button>
</div>
</div>
+ <div class="new" v-if="queue > 0"><button class="_buttonPrimary" @click="top()">{{ $ts.newNoteRecived }}</button></div>
<XTimeline ref="tl"
class="_gap"
:key="src === 'list' ? `list:${list.id}` : src === 'antenna' ? `antenna:${antenna.id}` : src === 'channel' ? `channel:${channel.id}` : src"
@@ -30,7 +31,6 @@
@after="after()"
@queue="queueUpdated"
/>
- <div class="new" v-if="queue > 0"><button class="_buttonPrimary" @click="top()">{{ $ts.newNoteRecived }}</button></div>
</div>
</template>