mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* [ADF-5366] initialize discovery and version compatibility service for oauth based session * better error message * * fix spaces * * revert the search service * * fix build * * check properties after type update * * check properties after type update * * check properties after type update * * fix infinite loop * * fix test without title * * wait for options * * wait for session * Update metadata-content-type.e2e.ts * Update metadata-content-type.e2e.ts * Update protractor.excludes.json * Update protractor.excludes.json
28 lines
1.4 KiB
HTML
28 lines
1.4 KiB
HTML
<ng-container *ngIf="!property.isEmpty() || isEditable()">
|
|
<div [attr.data-automation-id]="'card-select-label-' + property.key"
|
|
class="adf-property-label">{{ property.label | translate }}</div>
|
|
<div class="adf-property-field">
|
|
<div *ngIf="!isEditable()"
|
|
class="adf-select-item-padding adf-property-value"
|
|
[attr.data-automation-id]="'select-readonly-value-' + property.key"
|
|
data-automation-class="read-only-value">{{ (property.displayValue | async) | translate }}</div>
|
|
<div *ngIf="isEditable()">
|
|
<mat-form-field class="adf-select-item-padding-editable adf-property-value">
|
|
<mat-select [(value)]="value"
|
|
panelClass="adf-select-filter"
|
|
(selectionChange)="onChange($event)"
|
|
data-automation-class="select-box">
|
|
|
|
<adf-select-filter-input *ngIf="showInputFilter" (change)="onFilterInputChange($event)"></adf-select-filter-input>
|
|
|
|
<mat-option *ngIf="showNoneOption()">{{ 'CORE.CARDVIEW.NONE' | translate }}</mat-option>
|
|
<mat-option *ngFor="let option of list$ | async"
|
|
[value]="option.key">
|
|
{{ option.label | translate }}
|
|
</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
</div>
|
|
</div>
|
|
</ng-container>
|