fix: initial transformation of ganttBars

This commit is contained in:
Dominik Pschenitschni 2022-10-19 15:39:03 +02:00
parent 56d306372b
commit e96ea2c652
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ watch(
ganttBars.value = []
tasks.value.forEach(t => ganttBars.value.push(transformTaskToGanttBar(t)))
},
{deep: true},
{deep: true, immediate: true},
)
function transformTaskToGanttBar(t: ITask) {