fix: give the possibility to use internal webapp url in browserless requests (get-certificate-pdf and get-audit-logs-pdf) (#2127) (#2230)

This commit is contained in:
Timur Ercan
2025-11-22 10:49:34 +01:00
committed by GitHub
parent 921c3d1ff3
commit 16ee6b7a6d

View File

@ -179,7 +179,7 @@ export default function CompletedSigningPage({ loaderData }: Route.ComponentProp
{match({ status: signingStatus, deletedAt: document.deletedAt }) {match({ status: signingStatus, deletedAt: document.deletedAt })
.with({ status: 'COMPLETED' }, () => ( .with({ status: 'COMPLETED' }, () => (
<div className="text-documenso-700 mt-4 flex items-center text-center"> <div className="mt-4 flex items-center text-center text-documenso-700">
<CheckCircle2 className="mr-2 h-5 w-5" /> <CheckCircle2 className="mr-2 h-5 w-5" />
<span className="text-sm"> <span className="text-sm">
<Trans>Everyone has signed</Trans> <Trans>Everyone has signed</Trans>
@ -213,29 +213,29 @@ export default function CompletedSigningPage({ loaderData }: Route.ComponentProp
{match({ status: signingStatus, deletedAt: document.deletedAt }) {match({ status: signingStatus, deletedAt: document.deletedAt })
.with({ status: 'COMPLETED' }, () => ( .with({ status: 'COMPLETED' }, () => (
<p className="text-muted-foreground/60 mt-2.5 max-w-[60ch] text-center text-sm font-medium md:text-base"> <p className="mt-2.5 max-w-[60ch] text-center text-sm font-medium text-muted-foreground/60 md:text-base">
<Trans> <Trans>
Everyone has signed! You will receive an Email copy of the signed document. Everyone has signed! You will receive an email copy of the signed document.
</Trans> </Trans>
</p> </p>
)) ))
.with({ status: 'PROCESSING' }, () => ( .with({ status: 'PROCESSING' }, () => (
<p className="text-muted-foreground/60 mt-2.5 max-w-[60ch] text-center text-sm font-medium md:text-base"> <p className="mt-2.5 max-w-[60ch] text-center text-sm font-medium text-muted-foreground/60 md:text-base">
<Trans> <Trans>
All recipients have signed. The document is being processed and you will receive All recipients have signed. The document is being processed and you will receive
an Email copy shortly. an email copy shortly.
</Trans> </Trans>
</p> </p>
)) ))
.with({ deletedAt: null }, () => ( .with({ deletedAt: null }, () => (
<p className="text-muted-foreground/60 mt-2.5 max-w-[60ch] text-center text-sm font-medium md:text-base"> <p className="mt-2.5 max-w-[60ch] text-center text-sm font-medium text-muted-foreground/60 md:text-base">
<Trans> <Trans>
You will receive an Email copy of the signed document once everyone has signed. You will receive an email copy of the signed document once everyone has signed.
</Trans> </Trans>
</p> </p>
)) ))
.otherwise(() => ( .otherwise(() => (
<p className="text-muted-foreground/60 mt-2.5 max-w-[60ch] text-center text-sm font-medium md:text-base"> <p className="mt-2.5 max-w-[60ch] text-center text-sm font-medium text-muted-foreground/60 md:text-base">
<Trans> <Trans>
This document has been cancelled by the owner and is no longer available for This document has been cancelled by the owner and is no longer available for
others to sign. others to sign.
@ -282,7 +282,7 @@ export default function CompletedSigningPage({ loaderData }: Route.ComponentProp
<Trans>Need to sign documents?</Trans> <Trans>Need to sign documents?</Trans>
</h2> </h2>
<p className="text-muted-foreground/60 mt-4 max-w-[55ch] text-center leading-normal"> <p className="mt-4 max-w-[55ch] text-center leading-normal text-muted-foreground/60">
<Trans> <Trans>
Create your account and start using state-of-the-art document signing. Create your account and start using state-of-the-art document signing.
</Trans> </Trans>