Merge branch 'gbpark-node' of http://39.117.244.52:3000/kjs/ERP-node into jskim-node

This commit is contained in:
kjs
2026-03-11 12:23:52 +09:00
588 changed files with 25062 additions and 13798 deletions
+4 -4
View File
@@ -78,9 +78,9 @@ export const WORK_STATUS_LABELS: Record<WorkStatus, string> = {
};
export const WORK_STATUS_COLORS: Record<WorkStatus, string> = {
pending: 'bg-gray-100 text-gray-800',
in_progress: 'bg-blue-100 text-blue-800',
completed: 'bg-green-100 text-green-800',
cancelled: 'bg-red-100 text-red-800',
pending: 'bg-muted text-foreground',
in_progress: 'bg-primary/10 text-primary',
completed: 'bg-emerald-100 text-emerald-800',
cancelled: 'bg-destructive/10 text-red-800',
};