Files
vault/ui/lib/core/addon/components/key-value-header.hbs
claire bontempo 3403203471 UI: HDS adoption replace Breadcrumbs (#24387)
* 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!
2023-12-06 10:56:01 -08:00

19 lines
462 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
~}}
<Hds::Breadcrumb>
{{#each this.secretPath as |path|}}
{{#if this.linkToPaths}}
<Hds::Breadcrumb::Item
@text={{path.text}}
@route={{path.path}}
@model={{path.model}}
data-test-secret-breadcrumb={{path.text}}
/>
{{else}}
<Hds::Breadcrumb::Item @text={{path.text}} @current={{true}} />
{{/if}}
{{/each}}
</Hds::Breadcrumb>