diff --git a/cypress/pageobject/Patient/PatientLogupdate.ts b/cypress/pageobject/Patient/PatientLogupdate.ts
index 68287bfae41..45c1924e1a3 100644
--- a/cypress/pageobject/Patient/PatientLogupdate.ts
+++ b/cypress/pageobject/Patient/PatientLogupdate.ts
@@ -89,7 +89,7 @@ class PatientLogupdate {
}
clickUpdateDetail() {
- cy.verifyAndClickElement("#consultation-preview", "Update Details");
+ cy.verifyAndClickElement("#consultation-preview", "Update Log");
cy.wait(3000);
}
diff --git a/src/components/LogUpdate/CriticalCarePreview.tsx b/src/components/LogUpdate/CriticalCarePreview.tsx
index e131e43f405..e9f4c697d82 100644
--- a/src/components/LogUpdate/CriticalCarePreview.tsx
+++ b/src/components/LogUpdate/CriticalCarePreview.tsx
@@ -1,10 +1,13 @@
+import { Link } from "raviger";
import React, { useEffect } from "react";
import { useTranslation } from "react-i18next";
import Card from "@/CAREUI/display/Card";
+import CareIcon from "@/CAREUI/icons/CareIcon";
+
+import { Button } from "@/components/ui/button";
import { meanArterialPressure } from "@/components/Common/BloodPressureFormField";
-import ButtonV2 from "@/components/Common/ButtonV2";
import Loading from "@/components/Common/Loading";
import { ABGAnalysisFields } from "@/components/LogUpdate/Sections/ABGAnalysis";
import { IOBalanceSections } from "@/components/LogUpdate/Sections/IOBalance";
@@ -49,14 +52,27 @@ export default function CriticalCarePreview(props: Props) {
return (
-
-
+
+
+
+
+ {t("update_log")}
+
+
diff --git a/src/components/Patient/DailyRoundListDetails.tsx b/src/components/Patient/DailyRoundListDetails.tsx
index ec568ba56d2..2a2b76d26b2 100644
--- a/src/components/Patient/DailyRoundListDetails.tsx
+++ b/src/components/Patient/DailyRoundListDetails.tsx
@@ -1,7 +1,11 @@
+import { Link } from "raviger";
import { useState } from "react";
import { useTranslation } from "react-i18next";
-import ButtonV2 from "@/components/Common/ButtonV2";
+import CareIcon from "@/CAREUI/icons/CareIcon";
+
+import { Button } from "@/components/ui/button";
+
import Loading from "@/components/Common/Loading";
import Page from "@/components/Common/Page";
import { DailyRoundsModel } from "@/components/Patient/models";
@@ -50,11 +54,14 @@ export const DailyRoundListDetails = (props: any) => {
-
- Update Details
-
+
diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx
index 4555a7a97af..0125726ce73 100644
--- a/src/components/ui/button.tsx
+++ b/src/components/ui/button.tsx
@@ -14,7 +14,7 @@ const buttonVariants = cva(
destructive:
"bg-red-500 text-gray-50 shadow-sm hover:bg-red-500/90 dark:bg-red-900 dark:text-gray-50 dark:hover:bg-red-900/90",
outline:
- "border border-gray-200 bg-white shadow-sm hover:bg-gray-100 hover:text-gray-900 dark:border-gray-800 dark:bg-gray-950 dark:hover:bg-gray-800 dark:hover:text-gray-50",
+ "border border-gray-200 text-gray-900 bg-white shadow-sm hover:bg-gray-100 hover:text-gray-900 dark:border-gray-800 dark:bg-gray-950 dark:hover:bg-gray-800 dark:hover:text-gray-50",
primary:
"bg-primary-700 text-white shadow hover:bg-primary-700/90 dark:bg-primary-100 dark:text-primary-900 dark:hover:bg-primary-100/90",
secondary: