mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ACA-4436] - added option for select item to display None * [ACA-4436] - added unit test and fixed wrong default behaviour * [ACA-4436] - fixed property check * [ACA-4436] - fixed unit test * [ACA-4436] - fixed unit test
17 lines
804 B
HTML
17 lines
804 B
HTML
<div class="adf-property-list">
|
|
<div *ngFor="let property of properties">
|
|
<div [attr.data-automation-id]="'header-'+property.key" class="adf-property">
|
|
<adf-card-view-item-dispatcher
|
|
[property]="property"
|
|
[editable]="editable"
|
|
[displayEmpty]="displayEmpty"
|
|
[displayNoneOption]="property['displayNoneOption'] !== undefined ? property['displayNoneOption'] : displayNoneOption"
|
|
[displayClearAction]="displayClearAction"
|
|
[copyToClipboardAction]="copyToClipboardAction"
|
|
[useChipsForMultiValueProperty]="useChipsForMultiValueProperty"
|
|
[multiValueSeparator]="multiValueSeparator">
|
|
</adf-card-view-item-dispatcher>
|
|
</div>
|
|
</div>
|
|
</div>
|