Skip to content

Commit

Permalink
Fix radio buttons.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Sep 2, 2023
1 parent 82f6cd3 commit bddc88f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="form-check" *ngFor="let value of tagValues; trackBy: trackByValue"
[class.form-check-block]="!snapshot.isSingleline"
[class.form-check-inline]="snapshot.isSingleline">
<input class="form-check-input" type="radio" id="{{controlId}}_{{value}}"
<input class="form-check-input" type="radio" id="{{controlId}}_{{value}}" [name]="controlId"
[disabled]="snapshot.isDisabled"
[ngModel]="valueModel"
(ngModelChange)="callChange($event)"
Expand Down

0 comments on commit bddc88f

Please sign in to comment.