From 3d30ad1dda8f31960586625bb6a432d6b3adde8e Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 3 Mar 2019 12:53:01 -0500 Subject: [PATCH] #417: refresh tab on user profile only --- src/components/tab_switcher/tab_switcher.js | 6 ++++-- src/components/user_profile/user_profile.vue | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/tab_switcher/tab_switcher.js b/src/components/tab_switcher/tab_switcher.js index 1de936e887..03da824955 100644 --- a/src/components/tab_switcher/tab_switcher.js +++ b/src/components/tab_switcher/tab_switcher.js @@ -4,7 +4,7 @@ import './tab_switcher.scss' export default Vue.component('tab-switcher', { name: 'TabSwitcher', - props: ['renderOnlyFocused'], + props: ['refresh', 'renderOnlyFocused'], data () { return { active: this.$slots.default.findIndex(_ => _.tag) @@ -12,7 +12,9 @@ export default Vue.component('tab-switcher', { }, watch: { $route () { - this.activateTab(0) + if (this.refresh) { + this.active = 0 + } } }, methods: { diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index a3d2825f61..54f1b97b41 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -6,7 +6,7 @@ :switcher="true" :selected="timeline.viewing" /> - +