Skip to content

Commit 49cd30d

Browse files
refactor: update help message
1 parent 6161e97 commit 49cd30d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

apps/OpenSign/src/components/shared/fields/SignersInput.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ const SignersInput = (props) => {
108108
<label className="block">
109109
Signers
110110
{props.required && <span className="text-red-500 text-[13px]">*</span>}
111-
<span className="ml-1 text-xs z-[999]">
111+
<span className="absolute ml-1 text-xs z-50">
112112
<Tooltip
113113
id={"signer-tooltip"}
114-
message={"This is a list of contacts/signers added by you"}
114+
message={"Begin typing a contact's name to see suggested signers from your saved contacts or add new ones. Arrange the signing order by adding signers in the desired sequence. Use the '+' button to include signers and the 'x' to remove them. Each signer will receive an email prompt to sign the document in the order listed."}
115115
/>
116116
</span>
117117
</label>

apps/OpenSign/src/json/ReportJson.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export default function reportJson(id) {
186186
}
187187
],
188188
helpMsg:
189-
"This is a list of templates that are used to create documents"
189+
"This is a list of templates that are available to you for creating documents. You can click the 'use' button to create a new document using a template, modify the document & add signers in the next step."
190190
};
191191
default:
192192
return null;

apps/OpenSign/src/pages/UserProfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ function UserProfile() {
264264
<div className="flex justify-between items-center py-2">
265265
<span className="font-semibold">
266266
Disable DocumentId :{" "}
267-
<Tooltip url={"https://docs.opensignlabs.com/docs/help/Settings/profile/"} />{" "}
267+
<Tooltip url={"https://docs.opensignlabs.com/docs/help/Settings/disabledocumentid"} />{" "}
268268
</span>{" "}
269269
<label
270270
className={`${

apps/OpenSign/src/primitives/Tooltip.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import { Tooltip as ReactTooltip } from "react-tooltip";
33
import { openInNewTab } from "../constant/Utils";
44
const Tooltip = ({ children, id, message, url, iconColor }) =>
55
url ? (
6-
<button onClick={() => openInNewTab(url)}>
6+
<button onClick={() => openInNewTab(url)} className="text-center">
77
{children ? (
88
children
99
) : (
10-
<i className="fa-solid fa-question border-[1.5px] px-1.5 py-0.5 rounded-full border-[#33bbff] text-xs text-[#33bbff]"></i>
10+
<i className="fa-solid fa-question text-xs border-[1.5px] px-1 rounded-full border-[#33bbff] text-[#33bbff]"></i>
1111
)}
1212
</button>
1313
) : (
@@ -21,7 +21,7 @@ const Tooltip = ({ children, id, message, url, iconColor }) =>
2121
children
2222
) : (
2323
<i
24-
className="fa-solid fa-question z-50 border-[1.5px] px-1.5 py-0.5 rounded-full text-xs"
24+
className="fa-solid fa-question text-xs border-[1.5px] px-1 rounded-full border-[#33bbff] text-[#33bbff]"
2525
style={{
2626
borderColor: iconColor ? iconColor : "#33bbff",
2727
color: iconColor ? iconColor : "#33bbff"

0 commit comments

Comments
 (0)