mirror of https://github.com/portainer/portainer
fix(namespace): create page layout [EE-6385] (#10675)
parent
936a71ee00
commit
a4926e5237
|
@ -27,7 +27,10 @@ export function CreateNamespaceView() {
|
|||
<div className="form-horizontal">
|
||||
<PageHeader
|
||||
title="Create a namespace"
|
||||
breadcrumbs="Create a namespace"
|
||||
breadcrumbs={[
|
||||
{ label: 'Namespaces', link: 'kubernetes.resourcePools' },
|
||||
'Create a namespace',
|
||||
]}
|
||||
reload
|
||||
/>
|
||||
|
||||
|
|
|
@ -103,15 +103,13 @@ export function NamespaceInnerForm({
|
|||
values={values}
|
||||
isValid={isValid}
|
||||
/>
|
||||
<FormSection title="Actions">
|
||||
<FormActions
|
||||
submitLabel="Create namespace"
|
||||
loadingText="Creating namespace"
|
||||
isLoading={isSubmitting}
|
||||
isValid={isValid}
|
||||
data-cy="k8sNamespaceCreate-submitButton"
|
||||
/>
|
||||
</FormSection>
|
||||
<FormActions
|
||||
submitLabel="Create namespace"
|
||||
loadingText="Creating namespace"
|
||||
isLoading={isSubmitting}
|
||||
isValid={isValid}
|
||||
data-cy="k8sNamespaceCreate-submitButton"
|
||||
/>
|
||||
</Form>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue