diff --git a/src/Components/Common/RelativeDateUserMention.tsx b/src/Components/Common/RelativeDateUserMention.tsx
index 6c5a78c7f09..2af92268987 100644
--- a/src/Components/Common/RelativeDateUserMention.tsx
+++ b/src/Components/Common/RelativeDateUserMention.tsx
@@ -9,7 +9,7 @@ function RelativeDateUserMention(props: {
withoutSuffix?: boolean;
}) {
return (
-
+
{
{
- Created :{" "}
-
+
Created :
+
{
}
- Last Modified :{" "}
-
+
Last Modified :
+
{
`/facility/${itemData.facility}/patient/${itemData.patient}/consultation/${itemData.id}/daily-rounds`
)
}
- disabled={itemData.discharge_date}
+ disabled={
+ (itemData.discharge_date as string | undefined) != undefined
+ }
authorizeFor={NonReadOnlyUsers}
>
Add Consultation Updates
diff --git a/src/Components/Patient/SampleTestCard.tsx b/src/Components/Patient/SampleTestCard.tsx
index 77c923c4163..ffb8b28926d 100644
--- a/src/Components/Patient/SampleTestCard.tsx
+++ b/src/Components/Patient/SampleTestCard.tsx
@@ -138,7 +138,7 @@ export const SampleTestCard = (props: SampleDetailsProps) => {
-
+
@@ -156,16 +156,17 @@ export const SampleTestCard = (props: SampleDetailsProps) => {