Skip to content

Commit 58b3cc6

Browse files
Merge pull request #1481 from OpenSignLabs/feat_status
fix: cannot read undefined objectId in reports
2 parents 76848b7 + 97f5d09 commit 58b3cc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/OpenSign/src/primitives/GetReportDisplay.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@ const ReportTable = (props) => {
12701270
const formatStatusRow = (item) => {
12711271
const signers = item?.Placeholders?.map((x, i) => {
12721272
const matchSigner = item?.AuditTrail?.find(
1273-
(audit) => audit.UserPtr.objectId === x.signerObjId
1273+
(audit) => audit?.UserPtr?.objectId === x.signerObjId
12741274
);
12751275
if (matchSigner) {
12761276
return {

0 commit comments

Comments
 (0)