From 657427bb6b050e42a3815ba07eee6fc7c8ff26c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=ADvia=20Gouv=C3=AAa?= Date: Thu, 9 Apr 2026 12:24:17 -0300 Subject: [PATCH] fix: resolve extended text box save issue when question title has a comma --- classes/components/forms/CustomQuestions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/components/forms/CustomQuestions.php b/classes/components/forms/CustomQuestions.php index bc8fda8..87995e8 100644 --- a/classes/components/forms/CustomQuestions.php +++ b/classes/components/forms/CustomQuestions.php @@ -43,7 +43,7 @@ private function getCustomQuestionFieldComponent(CustomQuestion $customQuestion, $customQuestionResponse = Repo::customQuestionResponse() ->getByCustomQuestionId($customQuestion->getId(), $submissionId); - $fieldName = $this->toKebabCase($customQuestion->getLocalizedTitle()) . '-' . $customQuestion->getId(); + $fieldName = 'customQuestion-' . $customQuestion->getId(); $fieldComponents = [ CustomQuestion::CUSTOM_QUESTION_TYPE_SMALL_TEXT_FIELD => new FieldText( $fieldName,