Build infrastructure and Angular 15 upgrade
This commit is contained in:
12
projects/flo/properties/properties.group.component.html
Normal file
12
projects/flo/properties/properties.group.component.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user