- updated condition for multi application for the same company and beneficiary;

This commit is contained in:
Vitalii Kiiko
2025-02-12 10:52:54 +01:00
parent 22453db220
commit 8e16e19937
4 changed files with 33 additions and 21 deletions

View File

@@ -59,6 +59,9 @@ const getBandoLabel = (status) => {
case 'CLOSE':
return __('Chiuso', 'gepafin');
case 'REJECTED':
return __('Respinto', 'gepafin');
default:
return '';
}

View File

@@ -57,6 +57,9 @@ const getBandoSeverity = (status) => {
case 'CLOSE':
return 'closed';
case 'REJECTED':
return 'danger';
default:
return 'info';
}