diff --git a/apps/client/src/widgets/react/FormList.tsx b/apps/client/src/widgets/react/FormList.tsx index 3bf808f87..9562d4a9b 100644 --- a/apps/client/src/widgets/react/FormList.tsx +++ b/apps/client/src/widgets/react/FormList.tsx @@ -35,6 +35,7 @@ export default function FormList({ children, onSelect, style, fullHeight }: Form const style: CSSProperties = {}; if (fullHeight) { style.height = "100%"; + style.overflow = "auto"; } return style; }, [ fullHeight ]);