fix(data): match subcontractor tasks to real projects; style On Hold status

This commit is contained in:
Satyam Rastogi
2026-05-29 04:22:30 +05:30
parent 2010ca080e
commit 2f43205854
3 changed files with 15 additions and 13 deletions
@@ -119,6 +119,7 @@ const PRIORITY_STYLES = {
const STATUS_CONFIG = {
Assigned: { cls: 'bg-amber-100 text-amber-700 dark:bg-amber-500/20 dark:text-amber-400', icon: Clock },
'In Progress': { cls: 'bg-blue-100 text-blue-700 dark:bg-blue-500/20 dark:text-blue-400', icon: PauseCircle },
'On Hold': { cls: 'bg-slate-100 text-slate-600 dark:bg-slate-500/20 dark:text-slate-400', icon: PauseCircle },
Completed: { cls: 'bg-emerald-100 text-emerald-700 dark:bg-emerald-500/20 dark:text-emerald-400', icon: CheckCircle },
Cancelled: { cls: 'bg-zinc-200 text-zinc-600 dark:bg-zinc-700 dark:text-zinc-300', icon: XCircle },
};