- implemented root manager functionality;

This commit is contained in:
Vitalii Kiiko
2026-03-25 14:21:31 +01:00
parent 6eea331530
commit cc847b5e48
7 changed files with 389 additions and 11 deletions

View File

@@ -74,6 +74,9 @@ const getBandoLabel = (status) => {
case 'REJECTED':
return __('Respinto', 'gepafin');
case 'DELETED':
return __('Cancellato', 'gepafin');
case 'TECHNICAL_EVALUATION_REJECTED':
return __('Respinto Tec-Fin', 'gepafin');

View File

@@ -72,6 +72,9 @@ const getBandoSeverity = (status) => {
case 'REJECTED':
return 'danger';
case 'DELETED':
return 'danger';
case 'TECHNICAL_EVALUATION_REJECTED':
return 'danger';