Files
spring-flo/projects/flo/properties/properties.group.component.html
2023-03-09 16:12:00 -05:00

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>