fix: manual data entry UI
This commit is contained in:
parent
c5f38f0572
commit
72a749acfc
2 changed files with 3 additions and 2 deletions
|
|
@ -10,6 +10,7 @@ import CloseIcon from '../styling/icons/action/close/zodiac.svg?react'
|
|||
const Modal = ({
|
||||
width,
|
||||
height,
|
||||
minHeight = 400,
|
||||
infoPanelHeight,
|
||||
title,
|
||||
small,
|
||||
|
|
@ -39,7 +40,7 @@ const Modal = ({
|
|||
{...props}>
|
||||
<>
|
||||
<Paper
|
||||
style={{ width, height, minHeight: height ?? 400 }}
|
||||
style={{ width, height, minHeight: height ?? minHeight }}
|
||||
className={classnames(
|
||||
'flex flex-col max-h-[90vh] rounded-lg outline-0',
|
||||
className,
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ const Wizard = ({
|
|||
title="Manual data entry"
|
||||
handleClose={onClose}
|
||||
width={520}
|
||||
height={520}
|
||||
minHeight={520}
|
||||
open={true}>
|
||||
<Stepper steps={LAST_STEP} currentStep={step} className="my-4" />
|
||||
<Formik
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue