We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f4d04c commit 341bd9bCopy full SHA for 341bd9b
microfrontends/SignDocuments/src/Component/DraftDocument.js
@@ -70,8 +70,9 @@ function DraftDocument() {
70
navigate(`${hostUrl}pdfRequestFiles/${data.objectId}`);
71
} //placeholder draft document
72
else if (
73
- (signerExist?.length > 0 && !isPlaceholder) ||
74
- (!signerExist && isPlaceholder?.length > 0)
+ (signerExist?.length > 0 &&
+ (!isPlaceholder || isPlaceholder?.length === 0)) ||
75
+ ((!signerExist || signerExist?.length === 0) && isPlaceholder?.length > 0)
76
) {
77
navigate(`${hostUrl}placeHolderSign/${data.objectId}`);
78
}
0 commit comments