This commit is contained in:
Timo 2021-02-19 15:43:44 +02:00
parent 192668a746
commit 6119a0f193

View File

@ -40,10 +40,10 @@
<mat-select panelClass="description-select" formControlName="dictionary"> <mat-select panelClass="description-select" formControlName="dictionary">
<mat-select-trigger>{{ displayedDictionaryLabel }}</mat-select-trigger> <mat-select-trigger>{{ displayedDictionaryLabel }}</mat-select-trigger>
<mat-option *ngFor="let dictionary of redactionDictionaries" [value]="dictionary.type"> <mat-option *ngFor="let dictionary of redactionDictionaries" [value]="dictionary.type" [matTooltip]="dictionary.description">
{{ dictionary.label }} <span>
<br /> {{ dictionary.label }}
<span class="description">{{ dictionary.description }}</span> </span>
</mat-option> </mat-option>
</mat-select> </mat-select>
</div> </div>