From 8b1f83d7f551d5414c250afa4bcade277f4eeaa7 Mon Sep 17 00:00:00 2001 From: Esdras Renan Date: Thu, 6 Nov 2025 15:02:16 -0300 Subject: [PATCH] fix: normalize text input values --- .../tickets/ticket-custom-fields.tsx | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/components/tickets/ticket-custom-fields.tsx b/src/components/tickets/ticket-custom-fields.tsx index e75c852..6cb39f7 100644 --- a/src/components/tickets/ticket-custom-fields.tsx +++ b/src/components/tickets/ticket-custom-fields.tsx @@ -529,11 +529,19 @@ export function TicketCustomFieldsSection({ ticket }: TicketCustomFieldsSectionP {field.label} {field.required ? * : null} - handleFieldChange(field, event.target.value)} - /> + handleFieldChange(field, event.target.value)} + /> {helpText} )