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 = ({
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,

View file

@ -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