mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
* adds ember-flight-icons dependecy * adds inline-json-import babel plugin * adds flight icon styling * updates Icon component to support flight icons * updates Icon component usages to new api and updates name values to flight icon set when available * fixes tests * updates icon story with flight mappings and fixes issue with flight icons not rendering in storybook * adds changelog * fixes typo in sign action glyph name in transit-key model * adds comments to icon-map * updates Icon component to use only supported flight icon sizes * adds icon transform codemod * updates icon transform formatting to handle edge case * runs icon transform on templates * updates Icon usage in toolbar-filter md and story * updates tests
26 lines
748 B
Handlebars
26 lines
748 B
Handlebars
{{#if @model.parentGroupIds.length}}
|
|
{{#each @model.parentGroupIds as |gid|}}
|
|
{{#linked-block
|
|
"vault.cluster.access.identity.show"
|
|
"groups"
|
|
gid
|
|
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>
|
|
{{/linked-block}}
|
|
{{/each}}
|
|
{{else}}
|
|
<EmptyState
|
|
@title="This group has no parent groups yet"
|
|
/>
|
|
{{/if}}
|