2019-08-23 12:01:27 +03:00
|
|
|
import ModalComponent from 'ghost-admin/components/modal-base';
|
|
|
|
import {inject as service} from '@ember/service';
|
|
|
|
|
|
|
|
export default ModalComponent.extend({
|
|
|
|
whatsNew: service(),
|
|
|
|
|
2021-06-18 12:12:36 +03:00
|
|
|
confirm() {},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
// noop - enter key shouldn't do anything
|
|
|
|
confirm() {}
|
|
|
|
}
|
2019-08-23 12:01:27 +03:00
|
|
|
});
|