Merge pull request #2538 from nextcloud/bugfix/2535

Do not reset filter when staying on the same board
This commit is contained in:
Julius Härtl
2020-11-16 10:44:14 +01:00
committed by GitHub

View File

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