Open haroldrubio opened 1 week ago
Add the following option to the propertiesAllowed field of the webfield config to enable filtering out papers without responses:
propertiesAllowed
, deskRejectVerificationCount: ` const invitationToCheck="Desk_Reject_Verification"; const verificationReplies = row.note?.details?.replies.filter(reply => { const hasReply = reply.invitations.some(invitation => invitation.includes(invitationToCheck)); return hasReply; }) return verificationReplies?.length??0; `
Add the following option to the
propertiesAllowed
field of the webfield config to enable filtering out papers without responses: