vault/ui/lib/kmip/addon/components/header-scope.hbs
Matthew Irish 970975cfa4
[UI] - Colocated components in addons (#31413)
* core: run colocated components codemod

* kmip: run colocated components codemod

* replication: run colocated components codemod

* core: remove manual setting of templates with setComponentTemplate

* run prettier
2025-08-04 08:02:27 -07:00

28 lines
740 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
}}
<PageHeader as |p|>
<p.top>
<KmipBreadcrumb @currentRoute={{this.secretMountPath.currentPath}} />
</p.top>
<p.levelLeft>
<h1 class="title is-3">
<Icon @name="lock" @size="24" class="has-text-grey-light" />
{{this.secretMountPath.currentPath}}
</h1>
</p.levelLeft>
</PageHeader>
<div class="tabs-container box is-sideless is-fullwidth is-paddingless is-marginless">
<nav class="tabs">
<ul>
<LinkTo @route="scopes.index" data-test-kmip-link-scopes="true">
Scopes
</LinkTo>
<LinkTo @route="configuration" data-test-kmip-link-config="true">
Configuration
</LinkTo>
</ul>
</nav>
</div>