15 lines
255 B
JavaScript
15 lines
255 B
JavaScript
|
import Component from '@ember/component';
|
||
|
|
||
|
export default Component.extend({
|
||
|
onSubmit() {},
|
||
|
replicationMode: null,
|
||
|
replicationDisplayMode: null,
|
||
|
model: null,
|
||
|
|
||
|
actions: {
|
||
|
onSubmit() {
|
||
|
return this.onSubmit(...arguments);
|
||
|
},
|
||
|
},
|
||
|
});
|