From 67a43dc8946e0ac42d04268182d7f7d4a6aab3eb Mon Sep 17 00:00:00 2001 From: Alex ORLUC <alex.orluc@maarch.org> Date: Tue, 10 Nov 2020 10:01:05 +0100 Subject: [PATCH] FIX #00000 TIME 0 instant fix --- .../app/contact/contact-detail/contact-detail.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/app/contact/contact-detail/contact-detail.component.html b/src/frontend/app/contact/contact-detail/contact-detail.component.html index ce41c893c12..349184f33e1 100644 --- a/src/frontend/app/contact/contact-detail/contact-detail.component.html +++ b/src/frontend/app/contact/contact-detail/contact-detail.component.html @@ -85,7 +85,7 @@ </mat-expansion-panel-header> <mat-list> <mat-list-item class="contact-item" *ngIf="!functionsService.empty(contact.notes)" - [title]="this.translate.instant('lang.note')"> + [title]="lang.note"> <mat-icon mat-list-icon class="contact-group far fa-sticky-note"></mat-icon> <p mat-line class="contact-content" [class.newData]="isNewValue('notes')" [title]="contact.notes"> {{contact.notes}} </p> -- GitLab