From 1ef2aee6b83ff1d2f7a000ae0818d4a593803328 Mon Sep 17 00:00:00 2001 From: Alex ORLUC <alex.orluc@maarch.org> Date: Tue, 10 Nov 2020 11:10:05 +0000 Subject: [PATCH] FEAT #00000 TIME 0 fix notes contact (cherry picked from commit 90fefc8d1403ca6dd8491ce8d74e6beb51c6d63c) --- .../contact/autocomplete/contact-autocomplete.component.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/frontend/app/contact/autocomplete/contact-autocomplete.component.html b/src/frontend/app/contact/autocomplete/contact-autocomplete.component.html index 1f3ff146977..bb88ed5b531 100644 --- a/src/frontend/app/contact/autocomplete/contact-autocomplete.component.html +++ b/src/frontend/app/contact/autocomplete/contact-autocomplete.component.html @@ -74,6 +74,11 @@ <p mat-line class="contact-content" *ngIf="!empty(option.addressCountry)" [title]="option.addressCountry"> {{option.addressCountry}} </p> </mat-list-item> + <mat-list-item class="contact-item" *ngIf="!empty(option.notes)"> + <mat-icon mat-list-icon class="contact-group far fa-sticky-note" [title]="'lang.note' | translate"> + </mat-icon> + <p mat-line class="contact-content" [title]="option.notes"> {{option.notes}} </p> + </mat-list-item> <ng-container *ngFor="let customField of option.customFields"> <mat-list-item class="contact-item" *ngIf="customField.value !== null"> <mat-icon mat-list-icon class="contact-group fas fa-hashtag" -- GitLab