diff --git a/addon/components/radio-button-input.js b/addon/components/radio-button-input.js index 097b6a8..615f33a 100644 --- a/addon/components/radio-button-input.js +++ b/addon/components/radio-button-input.js @@ -35,6 +35,11 @@ export default Component.extend({ 'ariaDescribedby:aria-describedby' ], + didRender() { + // Required for IE11 to correctly report its value + this.$().val(this.get('value')); + }, + checked: computed('groupValue', 'value', function() { return isEqual(this.get('groupValue'), this.get('value')); }).readOnly(),