diff --git a/src/app/features/worklog/util/get-complete-state-for-work-context.util.ts b/src/app/features/worklog/util/get-complete-state-for-work-context.util.ts index b2b3c659925..046beebb15b 100644 --- a/src/app/features/worklog/util/get-complete-state-for-work-context.util.ts +++ b/src/app/features/worklog/util/get-complete-state-for-work-context.util.ts @@ -9,7 +9,7 @@ export const getCompleteStateForWorkContext = ( archive: EntityState, ): { completeStateForWorkContext: EntityState; - unarchivedIds: string[]; + nonArchiveTaskIds: string[]; } => { const wid = workContext.id; @@ -22,7 +22,7 @@ export const getCompleteStateForWorkContext = ( ...taskState.entities, }, }, - unarchivedIds: taskState.ids as string[], + nonArchiveTaskIds: taskState.ids as string[], }; } @@ -47,7 +47,7 @@ export const getCompleteStateForWorkContext = ( ...archivedEntities, }, }, - unarchivedIds, + nonArchiveTaskIds: unarchivedIds, }; }; diff --git a/src/app/features/worklog/worklog.component.html b/src/app/features/worklog/worklog.component.html index f5747db9961..6b65fbae735 100644 --- a/src/app/features/worklog/worklog.component.html +++ b/src/app/features/worklog/worklog.component.html @@ -157,7 +157,7 @@