diff --git a/components/flow.tsx b/components/flow.tsx index b08a3ba7..2e1a1bbd 100644 --- a/components/flow.tsx +++ b/components/flow.tsx @@ -41,12 +41,16 @@ export function Flow() { const getStatusLabel = (status: number): string => { switch (status) { - case 3: + case 0: return 'NEW'; case 1: - case 4: return 'INPROGRESS'; case 2: + return 'DONE'; + case 3: + return 'NEW'; + case 4: + return 'INPROGRESS'; case 5: return 'DONE'; default: