Do not reset filter when staying on the same board

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-11-13 16:05:34 +01:00
parent 4549a2b0ee
commit ebd27a2f4d

View File

@@ -259,8 +259,10 @@ export default {
},
},
watch: {
board() {
this.clearFilter()
board(current, previous) {
if (current?.id !== previous?.id) {
this.clearFilter()
}
},
},
methods: {