mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
Merge pull request #1481 from OpenSignLabs/feat_status
fix: cannot read undefined objectId in reports
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user