Ghost/ghost/admin/app/components/modals/leave-editor.js

12 lines
261 B
JavaScript
Raw Normal View History

import ModalComponent from 'ghost/components/modals/base';
export default ModalComponent.extend({
actions: {
confirm() {
this.get('confirm')().finally(() => {
this.send('closeModal');
});
}
}
});