Skip to content
Snippets Groups Projects
Commit 09895330 authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FIX #15729 TIME 0:40 fix missing substitute message

parent e58d900d
No related branches found
No related tags found
No related merge requests found
...@@ -177,7 +177,8 @@ ...@@ -177,7 +177,8 @@
<ion-item *ngFor="let user of userList"> <ion-item *ngFor="let user of userList">
<ion-checkbox [disabled]="user.substitute" color="primary" slot="start" [value]="user" (ionChange)="selectSubstitute($event.detail.value)"></ion-checkbox> <ion-checkbox [disabled]="user.substitute" color="primary" slot="start" [value]="user" (ionChange)="selectSubstitute($event.detail.value)"></ion-checkbox>
<ion-label>{{ user.firstname }} {{ user.lastname }}</ion-label> <ion-label>{{ user.firstname }} {{ user.lastname }}</ion-label>
<ion-note slot="end">{{ user.email }}</ion-note> <ion-note *ngIf="!user.substitute" slot="end">{{ user.email }}</ion-note>
<ion-note *ngIf="user.substitute" slot="end" color="danger">{{ 'lang.delegatedUser' | translate }}</ion-note>
</ion-item> </ion-item>
</ion-list> </ion-list>
<ng-container *ngIf="authService.user.substitute != null && signaturesService.signaturesList.length > 0"> <ng-container *ngIf="authService.user.substitute != null && signaturesService.signaturesList.length > 0">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment