summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-09-18 15:39:01 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-09-18 15:39:01 +0900
commit5141afe476fdc0312bb9bbcf127d3fef5dc7ec9f (patch)
tree731f6ae17be836d2377147631b8b399a01ff09c6 /src
parentfix: アンテナが既読にならないのを修正 (#7809) (diff)
downloadsharkey-5141afe476fdc0312bb9bbcf127d3fef5dc7ec9f.tar.gz
sharkey-5141afe476fdc0312bb9bbcf127d3fef5dc7ec9f.tar.bz2
sharkey-5141afe476fdc0312bb9bbcf127d3fef5dc7ec9f.zip
fix(client): タイムラインでリストとかなかったの修正
Diffstat (limited to 'src')
-rw-r--r--src/client/pages/timeline.vue12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/client/pages/timeline.vue b/src/client/pages/timeline.vue
index 125191223c..4b5b90e6ae 100644
--- a/src/client/pages/timeline.vue
+++ b/src/client/pages/timeline.vue
@@ -51,6 +51,18 @@ export default defineComponent({
icon: this.src === 'local' ? 'fas fa-comments' : this.src === 'social' ? 'fas fa-share-alt' : this.src === 'global' ? 'fas fa-globe' : 'fas fa-home',
bg: 'var(--bg)',
actions: [{
+ icon: 'fas fa-list-ul',
+ text: this.$ts.lists,
+ handler: this.chooseList
+ }, {
+ icon: 'fas fa-satellite',
+ text: this.$ts.antennas,
+ handler: this.chooseAntenna
+ }, {
+ icon: 'fas fa-satellite-dish',
+ text: this.$ts.channel,
+ handler: this.chooseChannel
+ }, {
icon: 'fas fa-calendar-alt',
text: this.$ts.jumpToSpecifiedDate,
handler: this.timetravel