We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a6bd32 commit 0b859c2Copy full SHA for 0b859c2
front-end/src/views/BoardPage.vue
@@ -136,7 +136,9 @@ export default {
136
beforeRouteLeave (to, from, next) {
137
console.log('[BoardPage] Before route leave')
138
next()
139
- this.unsubscribeFromRealTimeUpdate(this.board.id)
+ if (to.name !== 'card') {
140
+ this.unsubscribeFromRealTimeUpdate(this.board.id)
141
+ }
142
},
143
mounted () {
144
console.log('[BoardPage] Mouted')
0 commit comments