open-nomad/ui/app/components/das/error.js
Buck Doyle 31b4ed7a6d
Add DAS UI code from enterprise (#9192)
This is a few combined iterations on the DAS feature.
2020-10-29 07:46:42 -05:00

10 lines
233 B
JavaScript

import Component from '@glimmer/component';
import { action } from '@ember/object';
export default class DasErrorComponent extends Component {
@action
dismissClicked() {
this.args.proceed({ manuallyDismissed: true });
}
}