Properties group filtering support

This commit is contained in:
BoykoAlex
2020-01-15 10:40:43 -05:00
parent f4cf3cd8f2
commit abe9b929f4
3 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,3 @@
<div *ngIf="propertiesGroupModel && !propertiesGroupModel.isLoading" class="properties-group-container" [formGroup]="form">
<df-property *ngFor="let model of propertiesGroupModel.getControlsModels()" [model]="model" [form]="form" class="property-row"></df-property>
<df-property *ngFor="let model of controlModelsToDisplay" [model]="model" [form]="form" class="property-row"></df-property>
</div>