#417: refresh tab on user profile only

This commit is contained in:
dave 2019-03-03 12:53:01 -05:00
parent 10711f9045
commit 3d30ad1dda
2 changed files with 5 additions and 3 deletions

View File

@ -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: {

View File

@ -6,7 +6,7 @@
:switcher="true"
:selected="timeline.viewing"
/>
<tab-switcher :renderOnlyFocused="true">
<tab-switcher :refresh="true" :renderOnlyFocused="true">
<Timeline
:label="$t('user_card.statuses')"
:disabled="!user.statuses_count"