Skip to content

Commit

Permalink
fix(MdRadio): internal radio not being checked (#2063)
Browse files Browse the repository at this point in the history
  • Loading branch information
hastom authored and marcosmoura committed May 13, 2019
1 parent f9fa6dd commit a9feb6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MdRadio/MdRadio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="md-radio" :class="[$mdActiveTheme, radioClasses]">
<div class="md-radio-container" @click.stop="toggleCheck">
<md-ripple md-centered :md-active.sync="rippleActive" :md-disabled="disabled">
<input type="radio" v-bind="{ id, name, disabled, required, value }">
<input type="radio" v-bind="{ id, name, disabled, required, value, checked: isSelected }">
</md-ripple>
</div>

Expand Down

0 comments on commit a9feb6f

Please sign in to comment.