فهرست منبع

chore(report): adjust layout of report main page

sw 3 هفته پیش
والد
کامیت
5222a9686f
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      src/pages/patient/DiagnosticReport/components/ReportMain.tsx
  2. 1 1
      src/pages/patient/DiagnosticReport/index.tsx

+ 1 - 1
src/pages/patient/DiagnosticReport/components/ReportMain.tsx

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

+ 1 - 1
src/pages/patient/DiagnosticReport/index.tsx

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