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 148ae40 commit 2f4d04cCopy full SHA for 2f4d04c
microfrontends/SignDocuments/src/Component/LegaDrive/FolderDrive/legaDriveComponent.js
@@ -134,8 +134,9 @@ function PdfFileComponent({
134
navigate(`${hostUrl}pdfRequestFiles/${data.objectId}`);
135
} //placeholder draft document
136
else if (
137
- (signerExist?.length > 0 && !isPlaceholder) ||
138
- (!signerExist && isPlaceholder?.length > 0)
+ (signerExist?.length > 0 &&
+ (!isPlaceholder || isPlaceholder?.length === 0)) ||
139
+ ((!signerExist || signerExist?.length === 0) && isPlaceholder?.length > 0)
140
) {
141
navigate(`${hostUrl}placeHolderSign/${data.objectId}`);
142
}
0 commit comments