vault/ui/app/components/identity/item-parent-groups.hbs
Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* license: update headers to IBM Corp.
* `make proto`
* update offset because source file changed

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-21 15:20:20 -06:00

26 lines
846 B
Handlebars

{{!
Copyright IBM Corp. 2016, 2025
SPDX-License-Identifier: BUSL-1.1
}}
{{#if @model.parentGroupIds.length}}
{{#each @model.parentGroupIds as |gid|}}
<LinkedBlock @params={{array "vault.cluster.access.identity.show" "groups" gid this.details}} class="list-item-row">
<div class="columns is-mobile">
<div class="column is-10">
<LinkTo
@route="vault.cluster.access.identity.show"
@models={{array "groups" gid "details"}}
class="is-block has-text-black has-text-weight-semibold"
>
<Icon @name="folder" class="has-text-grey-light" />{{gid}}
</LinkTo>
</div>
<div class="column has-text-right">
</div>
</div>
</LinkedBlock>
{{/each}}
{{else}}
<EmptyState @title="This group has no parent groups yet" />
{{/if}}