Skip to content

Commit

Permalink
docs(forms): change inline custom radio name (#31936)
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-deramond committed Oct 19, 2020
1 parent b1ae785 commit 171da55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/docs/4.5/components/forms.md
Expand Up @@ -1276,11 +1276,11 @@ $('.your-checkbox').prop('indeterminate', true)

{% capture example %}
<div class="custom-control custom-radio custom-control-inline">
<input type="radio" id="customRadioInline1" name="customRadioInline1" class="custom-control-input">
<input type="radio" id="customRadioInline1" name="customRadioInline" class="custom-control-input">
<label class="custom-control-label" for="customRadioInline1">Toggle this custom radio</label>
</div>
<div class="custom-control custom-radio custom-control-inline">
<input type="radio" id="customRadioInline2" name="customRadioInline1" class="custom-control-input">
<input type="radio" id="customRadioInline2" name="customRadioInline" class="custom-control-input">
<label class="custom-control-label" for="customRadioInline2">Or toggle this other custom radio</label>
</div>
{% endcapture %}
Expand Down

0 comments on commit 171da55

Please sign in to comment.