mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-07 21:36:26 +02:00
Merge remote-tracking branch 'remotes/from/ce/main'
This commit is contained in:
commit
65dc1a41e0
@ -3,7 +3,7 @@
|
||||
SPDX-License-Identifier: BUSL-1.1
|
||||
}}
|
||||
|
||||
<Page::Header @title="Secrets recovery" class="bottom-margin-16">
|
||||
<Page::Header @title="Secrets recovery">
|
||||
<:breadcrumbs>
|
||||
<Page::Breadcrumbs @breadcrumbs={{@breadcrumbs}} />
|
||||
</:breadcrumbs>
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
</:actions>
|
||||
</Page::Header>
|
||||
|
||||
<Hds::Table class="top-margin-16" data-test-table="details">
|
||||
<Hds::Table data-test-table="details">
|
||||
<:head as |H|>
|
||||
<H.Tr>
|
||||
{{#each this.tableColumns as |col|}}
|
||||
|
||||
@ -37,7 +37,7 @@
|
||||
|
||||
{{#if this.showContent}}
|
||||
{{! Filters section }}
|
||||
<Hds::SegmentedGroup class="has-top-margin-m" as |SG|>
|
||||
<Hds::SegmentedGroup class="top-margin-12" as |SG|>
|
||||
<SG.TextInput
|
||||
@width="300px"
|
||||
@type="search"
|
||||
|
||||
@ -171,6 +171,10 @@
|
||||
margin-bottom: size_variables.$spacing-8 !important;
|
||||
}
|
||||
|
||||
.bottom-margin-8 {
|
||||
margin-bottom: size_variables.$spacing-8;
|
||||
}
|
||||
|
||||
.has-bottom-margin-s {
|
||||
margin-bottom: size_variables.$spacing-12;
|
||||
}
|
||||
@ -203,6 +207,10 @@
|
||||
margin-top: size_variables.$spacing-12;
|
||||
}
|
||||
|
||||
.top-margin-12 {
|
||||
margin-top: size_variables.$spacing-12;
|
||||
}
|
||||
|
||||
.has-top-margin-xs {
|
||||
margin-top: size_variables.$spacing-8;
|
||||
}
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
</:description>
|
||||
</Page::Header>
|
||||
|
||||
<div class="has-top-padding-l">
|
||||
<div>
|
||||
{{#if this.showForms}}
|
||||
<h3 class="is-size-4 has-text-weight-semibold">Settings</h3>
|
||||
<p class="has-border-top-light has-top-padding-l">
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
SPDX-License-Identifier: BUSL-1.1
|
||||
}}
|
||||
|
||||
<Hds::PageHeader class="page-header" ...attributes as |PH|>
|
||||
<Hds::PageHeader class="page-header bottom-margin-8" ...attributes as |PH|>
|
||||
<PH.Title>{{@title}}</PH.Title>
|
||||
{{#if (has-block "breadcrumbs")}}
|
||||
<PH.Breadcrumb>
|
||||
|
||||
@ -359,6 +359,10 @@ type Core struct {
|
||||
keepHALockOnStepDown *uint32
|
||||
heldHALock physical.Lock
|
||||
|
||||
// enterpriseTokenGetAuthRegisterFunc is an optional per-core test seam for
|
||||
// enterprise token auth registration lookup.
|
||||
enterpriseTokenGetAuthRegisterFunc func(*Core) (RegisterAuthFunc, error)
|
||||
|
||||
// shutdownDoneCh is used to notify when core.Shutdown() completes.
|
||||
// core.Shutdown() is typically issued in a goroutine to allow Vault to
|
||||
// release the stateLock. This channel is marked atomic to prevent race
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user