mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 11:26:18 +08:00
f2e14a3946
Co-authored-by: Neil Lalonde <neillalonde@gmail.com>
9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
import Component from "@ember/component";
|
|
export default Component.extend({
|
|
actions: {
|
|
changed(value) {
|
|
this.set("field.value", value);
|
|
}
|
|
}
|
|
});
|