mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
Replace fragment with null
This commit is contained in:
@ -226,9 +226,7 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
|
|||||||
className="mt-3 inline-block flex-shrink-0 rounded-full bg-yellow-200 px-2 py-0.5 text-xs font-medium text-gray-800">
|
className="mt-3 inline-block flex-shrink-0 rounded-full bg-yellow-200 px-2 py-0.5 text-xs font-medium text-gray-800">
|
||||||
Not Sent
|
Not Sent
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : null}
|
||||||
<></>
|
|
||||||
)}
|
|
||||||
{item.sendStatus === "SENT" && item.readStatus !== "OPENED" ? (
|
{item.sendStatus === "SENT" && item.readStatus !== "OPENED" ? (
|
||||||
<span id="sent_icon">
|
<span id="sent_icon">
|
||||||
<span
|
<span
|
||||||
@ -237,9 +235,7 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
|
|||||||
<CheckIcon className="mr-1 inline h-5" /> Sent
|
<CheckIcon className="mr-1 inline h-5" /> Sent
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : null}
|
||||||
<></>
|
|
||||||
)}
|
|
||||||
{item.readStatus === "OPENED" && item.signingStatus === "NOT_SIGNED" ? (
|
{item.readStatus === "OPENED" && item.signingStatus === "NOT_SIGNED" ? (
|
||||||
<span id="read_icon">
|
<span id="read_icon">
|
||||||
<span
|
<span
|
||||||
@ -250,9 +246,7 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
|
|||||||
Seen
|
Seen
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : null}
|
||||||
<></>
|
|
||||||
)}
|
|
||||||
{item.signingStatus === "SIGNED" ? (
|
{item.signingStatus === "SIGNED" ? (
|
||||||
<span id="signed_icon">
|
<span id="signed_icon">
|
||||||
<span
|
<span
|
||||||
@ -262,9 +256,7 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
|
|||||||
Signed
|
Signed
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : null}
|
||||||
<></>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{props.document.status !== DocumentStatus.COMPLETED && (
|
{props.document.status !== DocumentStatus.COMPLETED && (
|
||||||
|
|||||||
Reference in New Issue
Block a user