mirror of https://github.com/rancher/ui.git
13 lines
337 B
JavaScript
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');
|
|
}
|
|
},
|
|
});
|