diff --git a/ui/app/components/recovery/page/snapshots.hbs b/ui/app/components/recovery/page/snapshots.hbs index 751d44cc8c..8587cf27cd 100644 --- a/ui/app/components/recovery/page/snapshots.hbs +++ b/ui/app/components/recovery/page/snapshots.hbs @@ -3,7 +3,7 @@ SPDX-License-Identifier: BUSL-1.1 }} - + <:breadcrumbs> diff --git a/ui/app/components/recovery/page/snapshots/snapshot-details.hbs b/ui/app/components/recovery/page/snapshots/snapshot-details.hbs index 8ab08d0ed5..a88c7d24dc 100644 --- a/ui/app/components/recovery/page/snapshots/snapshot-details.hbs +++ b/ui/app/components/recovery/page/snapshots/snapshot-details.hbs @@ -25,7 +25,7 @@ - + <:head as |H|> {{#each this.tableColumns as |col|}} diff --git a/ui/app/components/secret-engine/list.hbs b/ui/app/components/secret-engine/list.hbs index 7ec23e98d5..db462f1ba3 100644 --- a/ui/app/components/secret-engine/list.hbs +++ b/ui/app/components/secret-engine/list.hbs @@ -37,7 +37,7 @@ {{#if this.showContent}} {{! Filters section }} - + -
+
{{#if this.showForms}}

Settings

diff --git a/ui/lib/core/addon/components/page/header.hbs b/ui/lib/core/addon/components/page/header.hbs index 2566e66687..3ccd23c13f 100644 --- a/ui/lib/core/addon/components/page/header.hbs +++ b/ui/lib/core/addon/components/page/header.hbs @@ -3,7 +3,7 @@ SPDX-License-Identifier: BUSL-1.1 }} - + {{@title}} {{#if (has-block "breadcrumbs")}} diff --git a/vault/core.go b/vault/core.go index 2da158e6ae..719839c918 100644 --- a/vault/core.go +++ b/vault/core.go @@ -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