diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-24 22:52:07 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-24 22:52:07 +0900 |
| commit | 7bfc41c6e1100ce6efa8b5f4dce3f9868f7a6128 (patch) | |
| tree | a6132ebe311fd12e53695c4d0992fba0e32dd65d /src | |
| parent | Gallery (#7194) (diff) | |
| download | sharkey-7bfc41c6e1100ce6efa8b5f4dce3f9868f7a6128.tar.gz sharkey-7bfc41c6e1100ce6efa8b5f4dce3f9868f7a6128.tar.bz2 sharkey-7bfc41c6e1100ce6efa8b5f4dce3f9868f7a6128.zip | |
fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/pages/timeline.vue | 2 |
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> |