Skip to content
This repository has been archived by the owner on Aug 25, 2020. It is now read-only.

Commit

Permalink
fix: style of radio
Browse files Browse the repository at this point in the history
  • Loading branch information
artemnih committed Jun 25, 2019
1 parent 81454ff commit 11a7345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/fields/form-radio/form-radio.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<ng-container [formGroup]="group">
<label *ngFor="let item of field.options">
<input type="radio" [value]="item" [formControlName]="field.name">{{item}}
<label *ngFor="let item of field.options" class="mr-3">
<input type="radio" [value]="item" [formControlName]="field.name" class="mr-1">{{item}}
</label>
</ng-container>

0 comments on commit 11a7345

Please sign in to comment.