mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
✨ signed count
This commit is contained in:
@ -219,8 +219,10 @@ const DocumentsPage: NextPageWithLayout = (props: any) => {
|
|||||||
{formatDocumentStatus(document.status)}
|
{formatDocumentStatus(document.status)}
|
||||||
<p>
|
<p>
|
||||||
<small>
|
<small>
|
||||||
{document.signed || 0}/
|
{document.Recipient.filter(
|
||||||
{document.Recipient.length || 0}
|
(r: any) => r.signingStatus === "SIGNED"
|
||||||
|
).length || 0}
|
||||||
|
/{document.Recipient.length || 0}
|
||||||
</small>
|
</small>
|
||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user