diff --git a/src/CAREUI/display/RecordMeta.tsx b/src/CAREUI/display/RecordMeta.tsx
index 662c61fd73f..2363ddbd551 100644
--- a/src/CAREUI/display/RecordMeta.tsx
+++ b/src/CAREUI/display/RecordMeta.tsx
@@ -1,8 +1,7 @@
import CareIcon from "../icons/CareIcon";
import {
- formatDate,
+ formatDateTime,
formatName,
- formatTime,
isUserOnline,
relativeTime,
} from "../../Utils/utils";
@@ -39,8 +38,9 @@ const RecordMeta = ({
{relativeTime(time)}
- {formatTime(time)}
- {formatDate(time)}
+
+ {formatDateTime(time).replace(";", "")}
+
{user && !inlineUser && (
by
diff --git a/src/Components/Facility/ConsultationDetails/ConsultationUpdatesTab.tsx b/src/Components/Facility/ConsultationDetails/ConsultationUpdatesTab.tsx
index be2751f0033..7a4080f53dd 100644
--- a/src/Components/Facility/ConsultationDetails/ConsultationUpdatesTab.tsx
+++ b/src/Components/Facility/ConsultationDetails/ConsultationUpdatesTab.tsx
@@ -311,59 +311,6 @@ export const ConsultationUpdatesTab = (props: ConsultationTabProps) => {
)}
- {((props.patientData.is_antenatal &&
- isAntenatal(props.patientData.last_menstruation_start_date)) ||
- isPostPartum(props.patientData.date_of_delivery)) && (
-
-
- Perinatal Status
-
-
-
- {props.patientData.is_antenatal &&
- isAntenatal(
- props.patientData.last_menstruation_start_date,
- ) && (
-
- )}
- {isPostPartum(props.patientData.date_of_delivery) && (
-
- )}
-
-
- {props.patientData.last_menstruation_start_date && (
-
-
- Last Menstruation:
-
- {formatDate(
- props.patientData.last_menstruation_start_date,
- )}
-
-
- )}
-
- {props.patientData.date_of_delivery && (
-
-
- Date of Delivery:
-
- {formatDate(props.patientData.date_of_delivery)}
-
-
- )}
-
- )}
@@ -637,6 +584,59 @@ export const ConsultationUpdatesTab = (props: ConsultationTabProps) => {
+ {((props.patientData.is_antenatal &&
+ isAntenatal(props.patientData.last_menstruation_start_date)) ||
+ isPostPartum(props.patientData.date_of_delivery)) && (
+
+
+ Perinatal Status
+
+
+
+ {props.patientData.is_antenatal &&
+ isAntenatal(
+ props.patientData.last_menstruation_start_date,
+ ) && (
+
+ )}
+ {isPostPartum(props.patientData.date_of_delivery) && (
+
+ )}
+
+
+ {props.patientData.last_menstruation_start_date && (
+
+
+ Last Menstruation:
+
+ {formatDate(
+ props.patientData.last_menstruation_start_date,
+ )}
+
+
+ )}
+
+ {props.patientData.date_of_delivery && (
+
+
+ Date of Delivery:
+
+ {formatDate(props.patientData.date_of_delivery)}
+
+
+ )}
+
+ )}
diff --git a/src/Components/Patient/DailyRounds.tsx b/src/Components/Patient/DailyRounds.tsx
index d0b2e321898..35e9828f9d1 100644
--- a/src/Components/Patient/DailyRounds.tsx
+++ b/src/Components/Patient/DailyRounds.tsx
@@ -502,6 +502,11 @@ export const DailyRounds = (props: any) => {
+
+ Symptoms
+
+
+
{
rows={5}
/>
-
- Symptoms
-
-
-
{state.form.rounds_type !== "DOCTORS_LOG" && (
<>
{
{state.form.rounds_type === "DOCTORS_LOG" && (
<>
+
+
+ {t("diagnosis")}
+
+ {/* */}
+ {diagnoses ? (
+
+ ) : (
+
+ Fetching existing diagnosis of patient...
+
+ )}
+
{t("investigations")}
@@ -701,19 +714,6 @@ export const DailyRounds = (props: any) => {
-
-
- {t("diagnosis")}
-
- {/* */}
- {diagnoses ? (
-
- ) : (
-
- Fetching existing diagnosis of patient...
-
- )}
-
>
)}