mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-23 23:51:08 +02:00
* update transforms * glimmer transform alphabet * move alphabet edit * license info and remove block error * logo edition * not found * Update ui/app/components/logo-edition.js Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com> * ad js docs --------- Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com>
21 lines
409 B
JavaScript
21 lines
409 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
|
|
/**
|
|
* @module LogoEdition
|
|
* LogoEdition shows the Vault logo with information about enterprise if applicable.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <LogoEdition />
|
|
*/
|
|
|
|
export default class LogoEdition extends Component {
|
|
@service version;
|
|
}
|