mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
12 lines
439 B
HTML
12 lines
439 B
HTML
<ng-container *ngIf="!property.isEmpty() || isEditable()">
|
|
<div class="adf-property-label">{{ property.label | translate }}</div>
|
|
<div class="adf-property-value">
|
|
<mat-checkbox
|
|
[attr.title]="'CORE.METADATA.ACTIONS.TOGGLE' | translate"
|
|
[checked]="property.displayValue"
|
|
[disabled]="!isEditable()"
|
|
(change)="changed($event)">
|
|
</mat-checkbox>
|
|
</div>
|
|
</ng-container>
|