mirror of https://github.com/portainer/portainer
refactor(ui/forms): add Actions title
parent
e3c2fd1699
commit
ee2a95f664
|
@ -1,13 +1,16 @@
|
|||
import { PropsWithChildren } from 'react';
|
||||
|
||||
import { AutomationTestingProps } from '@/types';
|
||||
|
||||
import { LoadingButton } from '@@/buttons';
|
||||
|
||||
interface Props {
|
||||
import { FormSection } from './FormSection';
|
||||
|
||||
interface Props extends AutomationTestingProps {
|
||||
submitLabel: string;
|
||||
loadingText: string;
|
||||
isLoading: boolean;
|
||||
isValid: boolean;
|
||||
'data-cy'?: string;
|
||||
}
|
||||
|
||||
export function FormActions({
|
||||
|
@ -19,6 +22,7 @@ export function FormActions({
|
|||
'data-cy': dataCy,
|
||||
}: PropsWithChildren<Props>) {
|
||||
return (
|
||||
<FormSection title="Actions">
|
||||
<div className="form-group">
|
||||
<div className="col-sm-12">
|
||||
<LoadingButton
|
||||
|
@ -34,5 +38,6 @@ export function FormActions({
|
|||
{children}
|
||||
</div>
|
||||
</div>
|
||||
</FormSection>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue