From 17b93322aaa57ffaaf5af22db7e1ae4b1b051cba Mon Sep 17 00:00:00 2001 From: SabreCat Date: Mon, 28 Feb 2022 16:28:54 -0600 Subject: [PATCH] fix(teams): reload completed To Do --- website/client/src/components/group-plans/taskInformation.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/client/src/components/group-plans/taskInformation.vue b/website/client/src/components/group-plans/taskInformation.vue index 286030199e..e70db7ac8b 100644 --- a/website/client/src/components/group-plans/taskInformation.vue +++ b/website/client/src/components/group-plans/taskInformation.vue @@ -281,6 +281,10 @@ export default { tasks.forEach(task => { this.tasksByType[task.type].push(task); }); + + if (this.editingTask && this.editingTask.completed) { + this.loadGroupCompletedTodos(); + } }, editTask (task) { this.taskFormPurpose = 'edit';