Skip to content

Commit 6b35b44

Browse files
authored
Merge pull request #2538 from nextcloud/bugfix/2535
Do not reset filter when staying on the same board
2 parents 3c21b35 + ebd27a2 commit 6b35b44

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/components/Controls.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,10 @@ export default {
259259
},
260260
},
261261
watch: {
262-
board() {
263-
this.clearFilter()
262+
board(current, previous) {
263+
if (current?.id !== previous?.id) {
264+
this.clearFilter()
265+
}
264266
},
265267
},
266268
methods: {

0 commit comments

Comments
 (0)