Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Add space between checkbox and label.
Browse files Browse the repository at this point in the history
Maybe we can remove the label in future as it's kinda duplicated, but i think it looks
better than just having the checkbox appear on it's own
  • Loading branch information
Dom Harrington committed Feb 8, 2018
1 parent 116ede9 commit caa2789
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function CheckboxWidget(props) {
disabled={disabled || readonly}
onChange={event => onChange(event.target.checked)}
/>
<span>{label}</span>
<span>&nbsp;{label}</span>
</label>
}
</div>
Expand Down

0 comments on commit caa2789

Please sign in to comment.