signed count

This commit is contained in:
Timur Ercan
2023-02-17 13:19:35 +01:00
parent d494f8bbf1
commit ad86b20498

View File

@ -219,8 +219,10 @@ const DocumentsPage: NextPageWithLayout = (props: any) => {
{formatDocumentStatus(document.status)}
<p>
<small>
{document.signed || 0}/
{document.Recipient.length || 0}
{document.Recipient.filter(
(r: any) => r.signingStatus === "SIGNED"
).length || 0}
/{document.Recipient.length || 0}
</small>
</p>
</td>