I need help with implementing multi-select checkboxes inside an Angular 4 application. The checkboxes are not appearing next to the team names as intended. Can anyone assist me with this issue?
Below is a snippet of my HTML code:
<select class="form-control" name="assigned_teams" id="assigned_teams" [(ngModel)]="advisorData.assigned_teams" multiple-size="5" multiple>
<option [ngValue]="aTeam" *ngFor="let aTeam of assignTeams"><input type="checkbox">{{aTeam.name}}
</option>
</select>