Browse Source

Fix radio buttons.

pull/1020/head
Sebastian 3 years ago
parent
commit
bddc88f4e3
  1. 2
      frontend/src/app/framework/angular/forms/editors/radio-group.component.html

2
frontend/src/app/framework/angular/forms/editors/radio-group.component.html

@ -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)"

Loading…
Cancel
Save