ui/app/components/modal-process-error/component.js

13 lines
337 B
JavaScript

import Ember from 'ember';
import ModalBase from 'lacsso/components/modal-base';
export default ModalBase.extend({
classNames: ['lacsso', 'modal-container', 'full-width-modal', 'modal-logs'],
exception: Ember.computed.alias('modalService.modalOpts'),
actions: {
dismiss: function() {
this.send('cancel');
}
},
});