After fetching the timeline scroll back to the top

This commit is contained in:
Peter Stuifzand 2018-09-08 15:15:37 +02:00
parent 429170737f
commit be03ad2b29

View File

@ -79,7 +79,9 @@
watch: {
'$route'(to, from) {
this.$store.dispatch('fetchChannels')
this.$store.dispatch('fetchTimeline', {uid: to.params.uid})
this.$store.dispatch('fetchTimeline', {uid: to.params.uid}).then(() => {
window.scrollTo({top: 0})
})
}
},