Skip to content

Commit

Permalink
fix : key arrangements (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
jabahum authored Oct 31, 2023
1 parent c740174 commit 0a6c7de
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
24 changes: 12 additions & 12 deletions src/patient-chart/laboratory-order.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,10 @@ const LaboratoryOrder: React.FC<LaboratoryOrderOverviewProps> = ({
},
actions: {
content: (
<>
<div>
<PrintButtonAction encounter={entry} />
<EmailButtonAction />
</>
{/* <EmailButtonAction /> */}
</div>
),
},
}));
Expand Down Expand Up @@ -309,32 +309,32 @@ const LaboratoryOrder: React.FC<LaboratoryOrderOverviewProps> = ({
<Tag
size="sm"
style={{
background: "green",
background: "#6F6F6F",
color: "white",
}}
title="Result Complete"
title="Result Requested"
>
{"Completed"}
{"Requested"}
</Tag>
<Tag
size="sm"
style={{
background: "red",
background: "green",
color: "white",
}}
title="Result Rejected"
title="Result Complete"
>
{"Rejected"}
{"Completed"}
</Tag>
<Tag
size="sm"
style={{
background: "#6F6F6F",
background: "red",
color: "white",
}}
title="Result Requested"
title="Result Rejected"
>
{"Requested"}
{"Rejected"}
</Tag>
</div>
<Layer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,11 @@ const TestsResults: React.FC<TestOrdersProps> = ({ obs }) => {
<div className={styles.tileContent}>
<p className={styles.content}>
{t(
"noTestOrdersToDisplay",
"No test orders to display"
"noTestResultsToDisplay",
"No test results to display"
)}
</p>
<p className={styles.helper}>
{t("checkFilters", "Check the filters above")}
</p>
</div>
<p className={styles.separator}>{t("or", "or")}</p>
</Tile>
</div>
) : null}
Expand Down

0 comments on commit 0a6c7de

Please sign in to comment.