{{! Elements "behind" tabs always render on the DOM and are just superficially hidden/shown.
diff --git a/ui/app/components/mount-backend-form.hbs b/ui/app/components/mount-backend-form.hbs
index 264b4b5a87..6f20923e6f 100644
--- a/ui/app/components/mount-backend-form.hbs
+++ b/ui/app/components/mount-backend-form.hbs
@@ -9,13 +9,13 @@
{{#if this.showEnable}}
{{#let (find-by "type" @mountModel.type @mountTypes) as |typeInfo|}}
- {{#if (eq @mountType "secret")}}
+ {{#if (eq @mountCategory "secret")}}
{{concat "Enable " typeInfo.displayName " Secrets Engine"}}
{{else}}
{{concat "Enable " typeInfo.displayName " Authentication Method"}}
{{/if}}
{{/let}}
- {{else if (eq @mountType "secret")}}
+ {{else if (eq @mountCategory "secret")}}
Enable a Secrets Engine
{{else}}
Enable an Authentication Method
@@ -25,13 +25,13 @@
-
+
{{#if @mountModel.type}}