Skip to content
Snippets Groups Projects
Commit b65625d0 authored by Marlène SIMONDANT's avatar Marlène SIMONDANT
Browse files

Small changes

parent 83b10e50
No related branches found
No related tags found
2 merge requests!993Notif,!983feat(dashboard) : create dashboard !
......@@ -12,7 +12,13 @@
*ngFor="let orientation of orientations"
class="row"
routerLink="/profil/details-orientation/{{ orientation._id }}"
[ngClass]="this.orientationService.daysAgo(orientation.createdAt) <= 14 ? 'new' : 'urgent'"
[ngClass]="
this.orientationService.daysAgo(orientation.createdAt) <= 14
? orientation.status === 'pending'
? 'new'
: ''
: 'urgent'
"
[attr.aria-label]="
'Ouvrir l orientation de ' + orientation.personOriented.name + ' ' + orientation.personOriented.surname
"
......
......@@ -82,7 +82,6 @@
text-align: center;
padding: 0 10px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
// Column widths
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment