aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline_menu
diff options
context:
space:
mode:
authorAlexander Tumin <iamtakingiteasy@eientei.org>2022-08-06 17:26:43 +0300
committerAlexander Tumin <iamtakingiteasy@eientei.org>2022-08-06 17:56:54 +0300
commit171f6f08943dd1d87120df3e4894ddcfd5e1d246 (patch)
tree0ee81442d29f9fa166add813dcf81046995593cf /src/components/timeline_menu
parent610720f164dc9fcf36f9df33bddec5ac9c654e1e (diff)
Lists implementation
Diffstat (limited to 'src/components/timeline_menu')
-rw-r--r--src/components/timeline_menu/timeline_menu.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/timeline_menu/timeline_menu.js b/src/components/timeline_menu/timeline_menu.js
index a11e7b7e..0792dc13 100644
--- a/src/components/timeline_menu/timeline_menu.js
+++ b/src/components/timeline_menu/timeline_menu.js
@@ -58,6 +58,9 @@ const TimelineMenu = {
if (route === 'tag-timeline') {
return '#' + this.$route.params.tag
}
+ if (route === 'list-timeline') {
+ return this.$store.getters.findListTitle(this.$route.params.id)
+ }
const i18nkey = timelineNames()[this.$route.name]
return i18nkey ? this.$t(i18nkey) : route
}