mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
|
import ModalComponent from 'ghost-admin/components/modal-base';
|
||
|
import {alias} from '@ember/object/computed';
|
||
|
|
||
|
export default ModalComponent.extend({
|
||
|
|
||
|
confirm() {},
|
||
|
fromAddress: alias('model.fromAddress')
|
||
|
});
|