Sort jobs such and such

This commit is contained in:
2025-07-04 17:17:18 +02:00
parent f12fdc8195
commit b18b05c675
3 changed files with 46 additions and 17 deletions

View File

@@ -29,9 +29,9 @@ const JobCard: React.FC<JobCardProps> = ({ job, onEdit, onDelete }) => {
case 'Planned': return 'bg-gray-600';
case 'Acquisition': return 'bg-yellow-600';
case 'Running': return 'bg-blue-600';
case 'Done': return 'bg-green-600';
case 'Selling': return 'bg-purple-600';
case 'Closed': return 'bg-gray-800';
case 'Done': return 'bg-purple-600';
case 'Selling': return 'bg-orange-600';
case 'Closed': return 'bg-green-600';
default: return 'bg-gray-600';
}
};