discourse/app/assets/javascripts/wizard/components/wizard-field-radio.js.es6

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
162 B
Plaintext
Raw Normal View History

import Component from "@ember/component";
export default Component.extend({
2016-09-10 03:57:44 +08:00
actions: {
changed(value) {
this.set("field.value", value);
}
}
});