mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-3298] Select CardView item label removed (#3555)
* placeholder removed * test added
This commit is contained in:
committed by
Eugenio Romano
parent
ef866fdbdb
commit
1bba43af8c
@@ -3,7 +3,7 @@
|
||||
<div *ngIf="!isEditable()" data-automation-class="read-only-value">{{ property.displayValue | async }}</div>
|
||||
<div *ngIf="isEditable()">
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="{{ property.label | translate }}" [(value)]="value" (change)="onChange($event)" data-automation-class="select-box">
|
||||
<mat-select [(value)]="value" (change)="onChange($event)" data-automation-class="select-box">
|
||||
<mat-option *ngFor="let option of getOptions() | async" [value]="option.key">
|
||||
{{ option.label | translate }}
|
||||
</mat-option>
|
||||
|
Reference in New Issue
Block a user