mirror of
https://github.com/status-im/consul.git
synced 2025-02-20 09:28:34 +00:00
* Update list items to be linkable to auth-methods show * Add general, namespace, and binding sub-routes * Remove namespace and binding tabs to be done separately * Update auth-method byId endpoint * Style the show auth-method kubernetes type * Finish Kubernetes auth-method type styling * OIDC and JWT auth-method styling * Create consul-auth-method-view component * Add navigation test for auth-methods * Create Certificate component
14 lines
308 B
Handlebars
14 lines
308 B
Handlebars
<div class="certificate">
|
|
<CopyButton @value={{@item}} @name={{@name}} />
|
|
<button
|
|
type="button"
|
|
class={{concat "visibility" (if this.show " hide" " show")}}
|
|
{{on "click" this.setVisibility}}
|
|
>
|
|
</button>
|
|
{{#if this.show}}
|
|
<div class="key">{{@item}}</div>
|
|
{{else}}
|
|
<hr />
|
|
{{/if}}
|
|
</div> |