mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
15 lines
312 B
JavaScript
15 lines
312 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
|
|
export default class DasErrorComponent extends Component {
|
|
@action
|
|
dismissClicked() {
|
|
this.args.proceed({ manuallyDismissed: true });
|
|
}
|
|
}
|