vault/ui/app/components/auth-method/configuration.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

20 lines
603 B
Handlebars

{{!
Copyright IBM Corp. 2016, 2025
SPDX-License-Identifier: BUSL-1.1
}}
<div class="box is-fullwidth is-sideless is-paddingless is-marginless">
{{#if @method.directLoginLink}}
<InfoTableRow @alwaysRender={{true}} @label="UI login link">
<Hds::Copy::Snippet @textToCopy={{@method.directLoginLink}} />
</InfoTableRow>
{{/if}}
{{#each this.displayFields as |field|}}
<InfoTableRow
@alwaysRender={{not (is-empty-value (get @method field))}}
@label={{this.label field}}
@value={{this.value field}}
@formatTtl={{this.isTtl field}}
/>
{{/each}}
</div>