13 lines
510 B
HTML
13 lines
510 B
HTML
<div *ngIf="propertiesGroupModel && !propertiesGroupModel.isLoading" class="properties-group-container"
|
|
[formGroup]="form">
|
|
<div
|
|
*ngIf="propertiesGroupModel.getControlsModels().length > 0 && controlModelsToDisplay.length === 0; else propertiesList"
|
|
class="no-matches-label">No results found.
|
|
</div>
|
|
</div>
|
|
|
|
<ng-template #propertiesList>
|
|
<df-property *ngFor="let model of controlModelsToDisplay" [model]="model" [form]="form"
|
|
class="property-row"></df-property>
|
|
</ng-template>
|