mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02:00
* replace all injects with import syntax * Delete ui/app/components/identity/_popup-base.js
22 lines
499 B
JavaScript
22 lines
499 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { service } from '@ember/service';
|
|
|
|
/**
|
|
* @module DashboardVaultVersionTitle
|
|
* DashboardVaultVersionTitle component are use to display the vault version title and the badges
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <Dashboard::VaultVersionTitle @version={{this.versionSvc}} />
|
|
* ```
|
|
*/
|
|
|
|
export default class DashboardVaultVersionTitle extends Component {
|
|
@service namespace;
|
|
}
|