remove modal header on wizard
This commit is contained in:
parent
ac65df58b8
commit
c3a11434c4
2 changed files with 6 additions and 7 deletions
|
@ -26,8 +26,9 @@ export const UserFederationKerberosWizard = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Wizard
|
<Wizard
|
||||||
title={t("addKerberosWizardTitle")}
|
// Because this is an inline wizard, this title and description should be put into the page. Specifying them here causes the wizard component to make a header that would be used on a modal.
|
||||||
description={helpText("addKerberosWizardDescription")}
|
// title={t("addKerberosWizardTitle")}
|
||||||
|
// description={helpText("addKerberosWizardDescription")}
|
||||||
steps={steps}
|
steps={steps}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -76,9 +76,6 @@ export const UserFederationLdapWizard = () => {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const title = t("addLdapWizardTitle");
|
|
||||||
const description = helpText("addLdapWizardDescription");
|
|
||||||
|
|
||||||
const footer = (
|
const footer = (
|
||||||
<WizardFooter>
|
<WizardFooter>
|
||||||
<WizardContextConsumer>
|
<WizardContextConsumer>
|
||||||
|
@ -165,8 +162,9 @@ export const UserFederationLdapWizard = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Wizard
|
<Wizard
|
||||||
title={title}
|
// Because this is an inline wizard, this title and description should be put into the page. Specifying them here causes the wizard component to make a header that would be used on a modal.
|
||||||
description={description}
|
// title={t("addLdapWizardTitle")}
|
||||||
|
// description={helpText("addLdapWizardDescription")}
|
||||||
height="100%"
|
height="100%"
|
||||||
steps={steps}
|
steps={steps}
|
||||||
footer={footer}
|
footer={footer}
|
||||||
|
|
Loading…
Reference in a new issue