Skip to content

Commit a9b86c7

Browse files
authored
Merge pull request #1226 from miguelcobain/paper-radio-class
update paper-radio to use native class syntax
2 parents 2e20d8b + 17a24b3 commit a9b86c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

addon/components/paper-radio.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ import { ChildMixin } from 'ember-composability-tools';
99
* @extends PaperRadioBaseComponent
1010
* @uses ChildMixin
1111
*/
12-
export default PaperRadioBaseComponent.extend(ChildMixin, {
13-
shouldRegister: false
14-
});
12+
export default class PaperRadio extends PaperRadioBaseComponent.extend(ChildMixin) {
13+
shouldRegister = false;
14+
}

0 commit comments

Comments
 (0)