kin: auto-commit after pipeline
This commit is contained in:
parent
c64f9b7538
commit
ae571bc9c2
2 changed files with 13 additions and 3 deletions
|
|
@ -731,7 +731,10 @@ const rootFilteredTasks = computed(() => {
|
|||
|
||||
const flattenedTasks = computed(() => {
|
||||
const result: Task[] = []
|
||||
const visitedInFlatten = new Set<string>()
|
||||
function addWithChildren(task: Task) {
|
||||
if (visitedInFlatten.has(task.id)) return
|
||||
visitedInFlatten.add(task.id)
|
||||
result.push(task)
|
||||
if (expandedTasks.value.has(task.id)) {
|
||||
const children = childrenMap.value.get(task.id) || []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue