You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/OpenSign/src/pages/PdfRequestFiles.js
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -593,15 +593,21 @@ function PdfRequestFiles() {
593
593
setSignedSigners([]);
594
594
setUnSignedSigners([]);
595
595
getDocumentDetails();
596
+
constindex=pdfDetails?.[0].Signers.findIndex(
597
+
(x)=>x.Email===jsonSender.email
598
+
);
599
+
constnewIndex=index+1;
600
+
constuser=pdfDetails?.[0].Signers[newIndex];
601
+
if(user){
602
+
setIsCompleted({
603
+
isModal: true,
604
+
message:
605
+
"You have successfully signed the document. You can download or print a copy of the partially signed document. A copy of the digitally signed document will be sent to the owner over email once it is signed by all signers."
@@ -1565,7 +1571,7 @@ function PlaceHolderSign() {
1565
1571
{
1566
1572
selector: '[data-tut="assignSigner"]',
1567
1573
content:
1568
-
" Please assign a new signer to use this icon for the placeholder. ",
1574
+
" You need to attach a Signer to every role. You can do that by clicking this icon. Once you select a Signer it will be attached to all the fields associated with that role which appear in the same colour. ",
1569
1575
position: "top",
1570
1576
style: {fontSize: "13px"}
1571
1577
}
@@ -1689,7 +1695,10 @@ function PlaceHolderSign() {
1689
1695
style={{padding: 20}}
1690
1696
>
1691
1697
{isSendAlert.mssg==="sure" ? (
1692
-
<span>Please add field for all recipients.</span>
1698
+
<span>
1699
+
Please add at least one signature field for all
1700
+
recipients.
1701
+
</span>
1693
1702
) : isSendAlert.mssg===textWidget ? (
1694
1703
<p>Please confirm that you have filled the text field.</p>
1695
1704
) : (
@@ -1727,7 +1736,7 @@ function PlaceHolderSign() {
0 commit comments