Skip to content

Commit

Permalink
Merge pull request #1481 from OpenSignLabs/feat_status
Browse files Browse the repository at this point in the history
fix: cannot read undefined objectId in reports
  • Loading branch information
prafull-opensignlabs authored Nov 21, 2024
2 parents 76848b7 + 97f5d09 commit 58b3cc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/OpenSign/src/primitives/GetReportDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ const ReportTable = (props) => {
const formatStatusRow = (item) => {
const signers = item?.Placeholders?.map((x, i) => {
const matchSigner = item?.AuditTrail?.find(
(audit) => audit.UserPtr.objectId === x.signerObjId
(audit) => audit?.UserPtr?.objectId === x.signerObjId
);
if (matchSigner) {
return {
Expand Down

0 comments on commit 58b3cc6

Please sign in to comment.