Skip to content

Commit

Permalink
Merge pull request I-TECH-UW#936 from atulyadav745/immuno-dashboard-fix
Browse files Browse the repository at this point in the history
Fixed ImmunohistoChemistryCaseView dashboard responsiveness
  • Loading branch information
mozzy11 authored Apr 1, 2024
2 parents 760dca9 + 91c0891 commit 885f4a4
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ function ImmunohistochemistryCaseView() {
})}
</Select>
</Column>
<Column lg={4} md={1} sm={2}>
<Column lg={4} md={2} sm={2}>
<Select
id="assignedTechnician"
name="assignedTechnician"
Expand Down Expand Up @@ -1023,7 +1023,7 @@ function ImmunohistochemistryCaseView() {
</IconButton>
</Column>

<Column lg={3} md={1} sm={2}>
<Column lg={3} md={2} sm={2}>
<FileUploader
style={{ marginTop: "-20px" }}
buttonLabel={
Expand Down Expand Up @@ -1060,7 +1060,7 @@ function ImmunohistochemistryCaseView() {
}}
/>
</Column>
<Column lg={4}>
<Column lg={4} md={2} sm={2}>
<h6>
{
reportTypes.filter(
Expand All @@ -1073,7 +1073,7 @@ function ImmunohistochemistryCaseView() {
{immunohistochemistrySampleInfo.reports[index].image && (
<>
{!reportParams[index]?.submited && (
<Column lg={2} md={1} sm={2}>
<Column lg={3} md={2} sm={2}>
<Button
onClick={() => {
var win = window.open();
Expand Down Expand Up @@ -1149,7 +1149,7 @@ function ImmunohistochemistryCaseView() {
<FormattedMessage id="button.label.genarateReport" />
</Button>
</Column>
<Column lg={2}>
<Column lg={2} md={2} sm={2}>
<Toggle
toggled={reportParams[index]?.toggled}
disabled={reportParams[index]?.submited}
Expand Down Expand Up @@ -1376,22 +1376,22 @@ function ImmunohistochemistryCaseView() {
),
)}
</Column>
<Column lg={2} md={8} sm={4}>
<Column lg={2} md={4} sm={2}>
<h6>
{" "}
<FormattedMessage id="pathology.label.grossexam" /> :
</h6>
</Column>
<Column lg={14} md={8} sm={4}>
<Column lg={14} md={4} sm={2}>
<Tag>{immunohistochemistrySampleInfo.grossExam} </Tag>
</Column>
<Column lg={2} md={8} sm={4}>
<Column lg={2} md={4} sm={2}>
<h6>
{" "}
<FormattedMessage id="pathology.label.microexam" /> :
</h6>
</Column>
<Column lg={14} md={8} sm={4}>
<Column lg={14} md={4} sm={2}>
<Tag>
{immunohistochemistrySampleInfo.microscopyExam}{" "}
</Tag>
Expand All @@ -1412,14 +1412,14 @@ function ImmunohistochemistryCaseView() {
),
)}
</Column>
<Column lg={2} md={8} sm={4}>
<Column lg={2} md={4} sm={2}>
<h6>
{" "}
<FormattedMessage id="pathology.label.textconclusion" />{" "}
:
</h6>
</Column>
<Column lg={14} md={8} sm={4}>
<Column lg={14} md={4} sm={2}>
<Tag>
{immunohistochemistrySampleInfo.conclusionText}
</Tag>
Expand Down

0 comments on commit 885f4a4

Please sign in to comment.