From 13fe3841d1de5f0ecb10f2a0722f4a1194097052 Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 11 May 2026 12:32:21 +0200 Subject: [PATCH] =?UTF-8?q?fix(documents):=20SigningDetailsDialog=20?= =?UTF-8?q?=E2=80=94=20partially=5Fsigned=20key=20match?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit mapWorkflowStatus had key 'partial:' but the schema status string is 'partially_signed'. The mismatch fell through to the 'pending' default so a partially-signed workflow rendered the wrong pill colour. Aligns the lookup key with the actual status enum. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/components/documents/signing-details-dialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/documents/signing-details-dialog.tsx b/src/components/documents/signing-details-dialog.tsx index 71ee7019..923b7775 100644 --- a/src/components/documents/signing-details-dialog.tsx +++ b/src/components/documents/signing-details-dialog.tsx @@ -150,7 +150,7 @@ function mapWorkflowStatus(status: string): StatusPillStatus { pending: 'pending', draft: 'draft', sent: 'sent', - partial: 'partial', + partially_signed: 'partial', completed: 'completed', signed: 'signed', expired: 'expired',