diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3d65574c6..5515b37a6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,7 +2,7 @@ name: Publish Docker on: push: - branches: ["release"] + branches: ['release'] jobs: build_and_publish_platform_containers: diff --git a/apps/marketing/package.json b/apps/marketing/package.json index ff63e1750..ce7cb7365 100644 --- a/apps/marketing/package.json +++ b/apps/marketing/package.json @@ -1,6 +1,6 @@ { "name": "@documenso/marketing", - "version": "1.8.0-rc.0", + "version": "1.8.0-rc.2", "private": true, "license": "AGPL-3.0", "scripts": { diff --git a/apps/marketing/src/app/(marketing)/singleplayer/client.tsx b/apps/marketing/src/app/(marketing)/singleplayer/client.tsx index 35e1ccb7f..3062049b4 100644 --- a/apps/marketing/src/app/(marketing)/singleplayer/client.tsx +++ b/apps/marketing/src/app/(marketing)/singleplayer/client.tsx @@ -163,6 +163,7 @@ export const SinglePlayerClient = () => { expired: null, signedAt: null, readStatus: 'OPENED', + rejectionReason: null, documentDeletedAt: null, signingStatus: 'NOT_SIGNED', sendStatus: 'NOT_SENT', diff --git a/apps/web/package.json b/apps/web/package.json index 314515c77..43882258c 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@documenso/web", - "version": "1.8.0-rc.0", + "version": "1.8.0-rc.2", "private": true, "license": "AGPL-3.0", "scripts": { diff --git a/apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx b/apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx index b44175d51..f35a4255b 100644 --- a/apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx +++ b/apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx @@ -4,7 +4,7 @@ import { useMemo } from 'react'; import { Trans, msg } from '@lingui/macro'; import { useLingui } from '@lingui/react'; -import { CheckCheckIcon, CheckIcon, Loader, MailOpen } from 'lucide-react'; +import { AlertTriangle, CheckCheckIcon, CheckIcon, Loader, MailOpen } from 'lucide-react'; import { DateTime } from 'luxon'; import { match } from 'ts-pattern'; @@ -133,6 +133,11 @@ export const DocumentPageViewRecentActivity = ({ )) + .with(DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_RECIPIENT_REJECTED, () => ( +
+
+ {recipient.rejectionReason} +
+
+
+
- {document.User.name} -
-+ {document.User.name} +
-
- {match(recipient.role)
- .with(RecipientRole.VIEWER, () => (
-
+ {match(recipient.role)
+ .with(RecipientRole.VIEWER, () => (
+
{recipient.email}
++ {_(RECIPIENT_ROLES_DESCRIPTION[recipient.role].roleName)} +
+
+ )}
+
+
+ )}
+
+