mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-23 19:51:09 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
22 lines
500 B
JavaScript
22 lines
500 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* 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;
|
|
}
|