From f1ff3be9e07edfc8384351fd5926f5fe29eebbfd Mon Sep 17 00:00:00 2001 From: Esdras Renan Date: Thu, 6 Nov 2025 14:57:18 -0300 Subject: [PATCH] fix: handle nullable ticket custom fields --- src/components/tickets/ticket-custom-fields.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tickets/ticket-custom-fields.tsx b/src/components/tickets/ticket-custom-fields.tsx index 9e11a7b..e75c852 100644 --- a/src/components/tickets/ticket-custom-fields.tsx +++ b/src/components/tickets/ticket-custom-fields.tsx @@ -276,7 +276,7 @@ export function TicketCustomFieldsSection({ ticket }: TicketCustomFieldsSectionP } payload.push({ fieldId: field.id as Id<"ticketFields">, - value: normalized.value, + value: "value" in normalized ? normalized.value : null, }) }