+
{/* {isCelebration && (
@@ -945,7 +947,7 @@ const ReportTable = (props) => {
navigate("/form/template")}
- className="fa-solid fa-square-plus text-sky-400 text-[25px]"
+ className="fa-solid fa-square-plus text-accent text-[25px]"
>
)}
{props.form && (
@@ -953,7 +955,7 @@ const ReportTable = (props) => {
className="cursor-pointer"
onClick={() => handleContactFormModal()}
>
-
+
)}
@@ -1048,7 +1050,7 @@ const ReportTable = (props) => {
|
)} */}
-
+
{props.actions?.length > 0 &&
props.actions.map((act, index) => (
- handleActionBtn(act, item)}
@@ -1252,29 +1255,30 @@ const ReportTable = (props) => {
)}
{isOption[item.objectId] &&
act.action === "option" && (
-
+
{act.subaction?.map((subact) => (
-
handleActionBtn(subact, item)
}
title={subact.hoverLabel}
>
-
- {subact.btnLabel && (
-
- {subact.btnLabel}
-
- )}
-
+
+
+ {subact.btnLabel && (
+
+ {subact.btnLabel}
+
+ )}
+
+
))}
-
+
)}
-
+
))}
{isViewShare[item.objectId] && (
diff --git a/apps/OpenSign/src/primitives/ModalUi.js b/apps/OpenSign/src/primitives/ModalUi.js
index 24028cd0c..348557c5f 100644
--- a/apps/OpenSign/src/primitives/ModalUi.js
+++ b/apps/OpenSign/src/primitives/ModalUi.js
@@ -13,30 +13,32 @@ const ModalUi = ({
reduceWidth,
showHeaderMessage
}) => {
+ const headerColor = headColor ? `text-${headColor}` : "text-base-content";
return (
<>
{isOpen && (
-
+
-
+
)}
>
);
diff --git a/apps/OpenSign/src/primitives/PdfDeclineModal.js b/apps/OpenSign/src/primitives/PdfDeclineModal.js
index ee8507762..7030dc5f8 100644
--- a/apps/OpenSign/src/primitives/PdfDeclineModal.js
+++ b/apps/OpenSign/src/primitives/PdfDeclineModal.js
@@ -1,6 +1,5 @@
import React from "react";
import "../styles/signature.css";
-import { rejectBtn } from "../constant/const";
function CustomModal({
show,
@@ -12,12 +11,12 @@ function CustomModal({
}) {
return (
show && (
-
-
-
+
)
);
}
|