1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00

fix leave editor modal

no issue
- following up from 6680, fixes a missing set of parentheses
This commit is contained in:
Austin Burdine 2016-04-12 14:04:59 -05:00
parent b8b448c267
commit 6154628886

View file

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