Updated to reflect renamed schemas

This commit is contained in:
tanshu
2020-05-11 22:42:13 +05:30
parent 07b7248b4e
commit 02fbd0984e
2 changed files with 9 additions and 9 deletions
@@ -25,11 +25,11 @@
<mat-checkbox formControlName="lockedOut">Is Locked Out?</mat-checkbox>
</div>
<mat-divider></mat-divider>
<div formArrayName="groups">
<div fxLayout="row" *ngFor="let g of item.groups; index as i" [formGroupName]="i" fxLayout="row"
<div formArrayName="roles">
<div fxLayout="row" *ngFor="let r of item.roles; index as i" [formGroupName]="i" fxLayout="row"
fxLayoutAlign="space-around start" fxLayout.lt-md="column" fxLayoutGap="20px"
fxLayoutGap.lt-md="0px">
<mat-checkbox formControlName="group" fxFlex>{{g.name}}</mat-checkbox>
<mat-checkbox formControlName="group" fxFlex>{{r.name}}</mat-checkbox>
</div>
</div>
</form>