#7638: [Bug fix] dmp-finalize-dialog.component.html: Truncate text and show tooltip with full dataset title.

This commit is contained in:
Konstantina Galouni 2022-03-28 18:00:14 +03:00
parent 650e0ceb06
commit 5ceea10c49
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@
<mat-selection-list #datasetsDraftSelectionList [(ngModel)]="outputModel.datasetsToBeFinalized">
<div class="styleBorder" *ngFor="let dataset of validDrafts">
<mat-list-option [value]='dataset.id' [disabled]="!datasetLookupStatus[dataset.id] || (datasetLookupStatus[dataset.id] != datasetLookupStatusEnum.VALID)">
{{ dataset.label }}
<span class="text-truncate" [matTooltip]="dataset.label">{{ dataset.label }}</span>
</mat-list-option>
</div>
</mat-selection-list>