Merge pull request #1906 from RafaelTaranto/fix/manual-data-entry-ui

LAM-1483 fix: manual data entry UI
This commit is contained in:
Rafael Taranto 2025-07-07 12:19:32 +01:00 committed by GitHub
commit 5c7fae5cbf
2 changed files with 3 additions and 2 deletions

View file

@ -10,6 +10,7 @@ import CloseIcon from '../styling/icons/action/close/zodiac.svg?react'
const Modal = ({ const Modal = ({
width, width,
height, height,
minHeight = 400,
infoPanelHeight, infoPanelHeight,
title, title,
small, small,
@ -39,7 +40,7 @@ const Modal = ({
{...props}> {...props}>
<> <>
<Paper <Paper
style={{ width, height, minHeight: height ?? 400 }} style={{ width, height, minHeight: height ?? minHeight }}
className={classnames( className={classnames(
'flex flex-col max-h-[90vh] rounded-lg outline-0', 'flex flex-col max-h-[90vh] rounded-lg outline-0',
className, className,

View file

@ -92,7 +92,7 @@ const Wizard = ({
title="Manual data entry" title="Manual data entry"
handleClose={onClose} handleClose={onClose}
width={520} width={520}
height={520} minHeight={520}
open={true}> open={true}>
<Stepper steps={LAST_STEP} currentStep={step} className="my-4" /> <Stepper steps={LAST_STEP} currentStep={step} className="my-4" />
<Formik <Formik