github.com/hernad/nomad@v1.6.112/ui/app/components/job-editor/alert.js (about)

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  import Component from '@glimmer/component';
     7  import { action } from '@ember/object';
     8  import { tracked } from '@glimmer/tracking';
     9  
    10  export default class Alert extends Component {
    11    @tracked shouldShowAlert = true;
    12  
    13    @action
    14    dismissAlert() {
    15      this.shouldShowAlert = false;
    16    }
    17  }