Skip to content

Commit

Permalink
role elements id fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bobcaprice committed May 1, 2024
1 parent 3283d8c commit 0dff2bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/app/home/contact/contact-update.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ <h3 class="mb-16 mr-8">Roles <span class="font-size-12 font-weight-normal">(Requ
<div formArrayName="roles" class="border-0 mb-32">
<div *ngFor="let myOption of roles.controls; let i = index">
<div formGroupName="{{ i }}">
<input [id]="myOption.get('name')" type="checkbox" class="role-checkbox" />
<label [for]="myOption.get('name')" class="font-size-14 font-weight-normal mb-16"> {{ myOption.get('name')?.value }} </label>
<input [id]="myOption.get('name')?.value + '-id'" type="checkbox" class="role-checkbox" />
<label [for]="myOption.get('name')?.value + '-id'" class="font-size-14 font-weight-normal mb-16"> {{ myOption.get('name')?.value }} </label>
</div>
</div>
</div>
Expand Down

0 comments on commit 0dff2bf

Please sign in to comment.