Skip to content

Commit

Permalink
Maybe this will fix #2298
Browse files Browse the repository at this point in the history
  • Loading branch information
tidusjar committed Jun 13, 2018
1 parent 4cdd0e5 commit 1bd62d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@

<div class="form-group" *ngFor="let u of users">
<div class="checkbox">
<input type="checkbox" id="{{u.user.id}}" [(ngModel)]="u.selected" (click)="selectSingleUser(u)">
<label for="{{u.user.id}}">{{u.user.userName}}</label>
<input type="checkbox" id="user{{u.user.id}}" [(ngModel)]="u.selected" (click)="selectSingleUser(u)">
<label for="user{{u.user.id}}">{{u.user.userName}}</label>
</div>
</div>
</div>
Expand Down

0 comments on commit 1bd62d1

Please sign in to comment.