- updated tables and fixed some bugs;

This commit is contained in:
Vitalii Kiiko
2024-10-24 17:33:13 +02:00
parent 255af71365
commit 36b9ebb165
9 changed files with 40 additions and 21 deletions

View File

@@ -12,6 +12,9 @@ const getBandoSeverity = (status) => {
case 'READY_TO_PUBLISH':
return 'info';
case 'READY':
return 'info';
case 'DRAFT':
return 'warning';
@@ -21,6 +24,12 @@ const getBandoSeverity = (status) => {
case 'AWAIT':
return 'warning';
case 'ASSIGNED':
return 'warning';
case 'EVALUATION':
return 'info';
case 'EXPIRED':
return 'closed';