Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit b7f36ac4 authored by Lorenzo Gandino's avatar Lorenzo Gandino
Browse files

Map CANCELED to REJECTED

parent 04eb44ab
Branches
Tags
4 merge requests!27POC end,!26Revert "Map CANCELED to REJECTED",!24Fix demo labels,!23Feature/demo fix
Pipeline #176385 passed
......@@ -9,6 +9,6 @@ export class RemoveUnderscorePipe implements PipeTransform {
if (!value) {
return value;
}
return value.replace(/_/g, ' ');
return value === 'CANCELED' ? 'REJECTED' : value.replace(/_/g, ' ');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment