open-vault/ui/app/templates/components/configure-pki-secret.hbs
Angel Garbarino 993f30618e
Addressing various Ember depreciations required for 4.0 (#14532)
* remove Ember Logger

* remove jquery

* prevent setting ember string methods on string

* remove reopen class

* Revert "remove reopen class"

This reverts commit d6a48f148617694cf7b0fc95feb30771ef982c59.

* redo

* clean up

* fix test

* Update ui/app/styles/components/tabs.scss

Co-authored-by: Chelsea Shaw <82459713+hashishaw@users.noreply.github.com>

* fix test

* test clean up

* clean up cont.

Co-authored-by: Chelsea Shaw <82459713+hashishaw@users.noreply.github.com>
2022-03-16 18:36:48 -06:00

19 lines
587 B
Handlebars

<div class="tabs-container box is-bottomless is-fullwidth is-paddingless">
<nav class="tabs">
<ul>
{{#each (array "cert" "urls" "crl" "tidy") as |section|}}
<LinkTo @route="vault.cluster.settings.configure-secret-backend.section" @model={{section}}>
{{#if (eq section "cert")}}
CA certificate
{{else if (eq section "urls")}}
URLs
{{else if (eq section "crl")}}
CRL
{{else if (eq section "tidy")}}
Tidy
{{/if}}
</LinkTo>
{{/each}}
</ul>
</nav>
</div>