>
diff --git a/apps/OpenSign/src/components/shared/fields/SignersInput.js b/apps/OpenSign/src/components/shared/fields/SignersInput.js
index 5f00dbfb0..2b2648db6 100644
--- a/apps/OpenSign/src/components/shared/fields/SignersInput.js
+++ b/apps/OpenSign/src/components/shared/fields/SignersInput.js
@@ -3,6 +3,7 @@ import Select from "react-select";
import AddSigner from "../../AddSigner";
import Modal from "react-modal";
import Parse from "parse";
+import Tooltip from "../../../primitives/Tooltip";
function arrayMove(array, from, to) {
array = array.slice();
array.splice(to < 0 ? array.length + to : to, 0, array.splice(from, 1)[0]);
@@ -107,6 +108,12 @@ const SignersInput = (props) => {
diff --git a/apps/OpenSign/src/json/ReportJson.js b/apps/OpenSign/src/json/ReportJson.js
index 0f0edc38c..37d0c94bb 100644
--- a/apps/OpenSign/src/json/ReportJson.js
+++ b/apps/OpenSign/src/json/ReportJson.js
@@ -18,7 +18,8 @@ export default function reportJson(id) {
btnIcon: "fa fa-plus",
redirectUrl: "draftDocument"
}
- ]
+ ],
+ helpMsg: "This are documents you have started but have not finalized for sending."
};
// Need your sign report
case "4Hhwbp482K":
@@ -33,7 +34,9 @@ export default function reportJson(id) {
btnIcon: "fa fa-eye",
redirectUrl: "pdfRequestFiles"
}
- ]
+ ],
+ helpMsg:
+ "This is a list of documents that are waiting for your signature"
};
// In progess report
case "1MwEuxLEkF":
@@ -48,7 +51,9 @@ export default function reportJson(id) {
btnIcon: "fa fa-eye",
redirectUrl: "pdfRequestFiles"
}
- ]
+ ],
+ helpMsg:
+ "This is a list of documents you've sent to other parties for signature."
};
// completed documents report
case "kQUoW4hUXz":
@@ -63,7 +68,8 @@ export default function reportJson(id) {
btnIcon: "fa fa-eye",
redirectUrl: "draftDocument"
}
- ]
+ ],
+ helpMsg: "This is a list of documents that have been signed by all parties."
};
// declined documents report
case "UPr2Fm5WY3":
@@ -78,7 +84,8 @@ export default function reportJson(id) {
btnIcon: "fa fa-eye",
redirectUrl: "draftDocument"
}
- ]
+ ],
+ helpMsg: "This is a list of documents that have been declined by one of the signers."
};
// Expired Documents report
case "zNqBHXHsYH":
@@ -93,7 +100,8 @@ export default function reportJson(id) {
btnIcon: "fa fa-eye",
redirectUrl: "draftDocument"
}
- ]
+ ],
+ helpMsg: "This is a list of documents that have reached their expiration date."
};
// Recently sent for signatures report show on dashboard
case "d9k3UfYHBc":
@@ -153,7 +161,8 @@ export default function reportJson(id) {
btnIcon: "fa-solid fa-trash"
}
],
- form: "ContactBook"
+ form: "ContactBook",
+ helpMsg: "This is a list of contacts/signers that have been added by you."
};
// template report
case "6TeaPr321t":
@@ -175,7 +184,9 @@ export default function reportJson(id) {
btnIcon: "fa fa-plus",
redirectUrl: "template"
}
- ]
+ ],
+ helpMsg:
+ "This is a list of templates that are used to create documents"
};
default:
return null;
diff --git a/apps/OpenSign/src/pages/Form.js b/apps/OpenSign/src/pages/Form.js
index 1e2afcae9..4ab1a09f2 100644
--- a/apps/OpenSign/src/pages/Form.js
+++ b/apps/OpenSign/src/pages/Form.js
@@ -35,7 +35,7 @@ const Forms = (props) => {
const [formData, setFormData] = useState({
Name: "",
Description: "",
- Note: "Please review and sign this document",
+ Note: "",
TimeToCompleteDays: 15,
SendinOrder: "false"
});
@@ -51,6 +51,7 @@ const Forms = (props) => {
};
useEffect(() => {
handleReset();
+ // eslint-disable-next-line react-hooks/exhaustive-deps
}, [props.title]);
const handleFileInput = (e) => {
setpercentage(0);
@@ -235,7 +236,10 @@ const Forms = (props) => {
setFormData({
Name: "",
Description: "",
- Note: "Please review and sign this document",
+ Note:
+ props.title === "Sign Yourself"
+ ? "Note to myself"
+ : "Please review and sign this document",
TimeToCompleteDays: 15,
SendinOrder: "true"
});
@@ -326,7 +330,10 @@ const Forms = (props) => {