@@ -9,7 +9,7 @@ interface Props {
export const ReportMain: React.FC<Props> = ({ className }) => (
<Row className={className} gutter={8}>
- <Col flex="auto">
+ <Col flex="auto" span={16}>
<MainContent />
</Col>
<Col span={8}>
@@ -15,7 +15,7 @@ const DiagnosticReport: React.FC = () => {
return (
<div className="flex flex-col h-full">
<ReportHeader />
- <ReportMain className="flex-1 overflow-hidden" />
+ <ReportMain className="flex-1 overflow-scroll" />
<ReportFooter reportData={reportData} />
</div>
);