Update detailed view for tasks

This commit is contained in:
Chris Veleris 2025-07-27 16:53:21 +03:00 committed by Chris
parent 5694df4adf
commit 40cd82a2e6
4 changed files with 117 additions and 64 deletions

View file

@ -186,8 +186,8 @@ export const getEventTypeLabel = (eventType: string): string => {
export const getStatusLabel = (status: number): string => {
const statusLabels: Record<number, string> = {
0: 'Not Started',
1: 'In Progress',
2: 'Done',
1: 'In Progress',
2: 'Completed',
3: 'Archived',
4: 'Waiting',
};