Files
nomad/ui/app/components/job-editor/alert.js
2023-08-10 17:27:29 -05:00

18 lines
361 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import Component from '@glimmer/component';
import { action } from '@ember/object';
import { tracked } from '@glimmer/tracking';
export default class Alert extends Component {
@tracked shouldShowAlert = true;
@action
dismissAlert() {
this.shouldShowAlert = false;
}
}