mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
* core: run colocated components codemod * kmip: run colocated components codemod * replication: run colocated components codemod * core: remove manual setting of templates with setComponentTemplate * run prettier
25 lines
820 B
Handlebars
25 lines
820 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
{{#if this.model.operationAll}}
|
|
<AlertInline @type="info" @message="This role allows all KMIP operations" class="is-marginless" />
|
|
{{/if}}
|
|
{{#each @model.operationFormFields as |group|}}
|
|
{{#each-in group as |groupName fieldsInGroup|}}
|
|
<InfoTableRow @alwaysRender={{true}} @label={{groupName}} @value={{true}}>
|
|
<div>
|
|
{{#each fieldsInGroup as |field|}}
|
|
<Icon
|
|
aria-label={{compute (action "operationEnabled") this.model field}}
|
|
class={{compute (action "iconClass") this.model field}}
|
|
@name={{compute (action "iconGlyph") this.model field}}
|
|
/>
|
|
{{field.options.label}}
|
|
<br />
|
|
{{/each}}
|
|
</div>
|
|
</InfoTableRow>
|
|
{{/each-in}}
|
|
{{/each}} |