We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a817739 commit 14fc4ecCopy full SHA for 14fc4ec
src/views/Tree.vue
@@ -226,7 +226,7 @@ export default {
226
227
filterState () {
228
return (this.tasksFilter.id?.trim() || this.tasksFilter.states?.length)
229
- ? [this.tasksFilter.id, this.tasksFilter.states]
+ ? [this.tasksFilter.id, this.tasksFilter.states, this.flat]
230
: null
231
},
232
@@ -330,7 +330,7 @@ export default {
330
// follow the family tree from cycle point nodes
331
children = node.familyTree[0]?.children
332
}
333
- if (children) {
+ if (!this.flat && children) {
334
for (const child of children) {
335
isMatch = this.filterNode(child, filteredOutNodesCache, idMatch) || isMatch
336
// Note: do not break early as we must run the filter over all children
0 commit comments