efril #7

Merged
aefril merged 23 commits from efril into main 2025-09-12 21:12:53 +00:00
Showing only changes of commit e1084277e0 - Show all commits

View File

@ -107,14 +107,16 @@ const DebouncedInput = ({
// Status color mapping
const getStatusColor = (status: string) => {
switch (status) {
case 'Draft':
case 'draft':
return 'secondary'
case 'Disetujui':
case 'approved':
return 'primary'
case 'Dikirim Sebagian':
case 'sent':
return 'warning'
case 'Selesai':
case 'received':
return 'success'
case 'cancelled':
return 'error'
default:
return 'default'
}