From 738a9d66b3e67cf46c7b95b6664976610a09315e Mon Sep 17 00:00:00 2001 From: Vinciane <vinciane.bizet@maarch.org> Date: Thu, 28 Mar 2019 15:05:51 +0100 Subject: [PATCH] FIX #9906 Correction of title attribute --- src/frontend/app/list/tools/tools-list.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/app/list/tools/tools-list.component.html b/src/frontend/app/list/tools/tools-list.component.html index b3d8299451d..c71da49fad8 100644 --- a/src/frontend/app/list/tools/tools-list.component.html +++ b/src/frontend/app/list/tools/tools-list.component.html @@ -1,7 +1,7 @@ -<button mat-mini-fab (click)="openSummarySheet();" [disabled]="selectedRes.length == 0" title="{{lang.exportDatas}}"> +<button mat-mini-fab (click)="openSummarySheet();" [disabled]="selectedRes.length == 0" title="{{lang.summarySheets}}"> <mat-icon class="fa fa-link"></mat-icon> </button> -<button mat-mini-fab (click)="openExport();" [disabled]="selectedRes.length == 0" title="{{lang.summarySheets}}"> +<button mat-mini-fab (click)="openExport();" [disabled]="selectedRes.length == 0" title="{{lang.exportDatas}}"> <mat-icon class="fa fa-file-download"></mat-icon> </button> \ No newline at end of file -- GitLab