mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 22:21:09 +02:00
* upgrade to 3.1.0 * VAULT-22471 upgrade to latest version * fix other selectors * fix pki tests * fix copy dropdown * generated breadcrumbs * mfa crumbs * oidc crumbs * identity crumbs * use hds crumbs in page::breadcrumbs file * rename selectors to be consistent * remaining oidc * update empty state link style to match hds * repl empty state * rep empty state 2 * policy and secret error template * replace yielded KeyValueHeader elements directly with HDS breadcrumbs * remove yield from KeyValueHeader * use key value header in secret header * update pki header * kmip breadcrumbs * replace key-value-header classes * ssh sign * replace key value with breadcrumbs * update selectors part 1 * add a tags * policy tests * add crumb index back * add current route to generated item * another round of test updates * remove root link test selector * secrets/secrete test * add changelog * trailing icon * delete breadcrumb css * consistently change to sentence case * titlsecase!
27 lines
706 B
Handlebars
27 lines
706 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
<PageHeader as |p|>
|
|
<p.top>
|
|
<KmipBreadcrumb @scope={{@scope}} @currentRoute={{@role}} />
|
|
</p.top>
|
|
<p.levelLeft>
|
|
<h1 class="title is-3">
|
|
{{@role}}
|
|
</h1>
|
|
</p.levelLeft>
|
|
</PageHeader>
|
|
<div class="tabs-container box is-sideless is-fullwidth is-paddingless is-marginless">
|
|
<nav class="tabs">
|
|
<ul>
|
|
<LinkTo @route="credentials.index" @models={{array @scope @role}} data-test-kmip-link-credentials="true">
|
|
Credentials
|
|
</LinkTo>
|
|
<LinkTo @route="role" @models={{array @scope @role}} data-test-kmip-link-role-details="true">
|
|
Details
|
|
</LinkTo>
|
|
</ul>
|
|
</nav>
|
|
</div> |