Skip to content

Commit 9244ddd

Browse files
committed
fixed bug in task completion status
1 parent 7d476db commit 9244ddd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

summary-viewer/Tasks.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,7 @@
241241
// Convert taskLogStatus to a user-friendly format
242242
const formattedStatus = task.taskLogStatus === "COMPLETED" ? "Completed" : "Not Completed"
243243

244-
const formattedTaskStatus =
245-
task.taskStatus === "COMPLETED" ? "Completed" : "Not Completed"
244+
const formattedTaskStatus = task.status === "COMPLETED" ? "Completed" : "Not Completed"
246245

247246
// Return a new object with updated values
248247
return {

0 commit comments

Comments
 (0)