From 0fabb0c4780f25fd6cffecc73a38238ee1d2b58b Mon Sep 17 00:00:00 2001 From: aminovfariz Date: Mon, 8 Jun 2026 11:34:28 +0200 Subject: [PATCH] fix(helpdesk): allow user-select in schema field type validation Co-Authored-By: Claude Sonnet 4.6 --- .../lib/Module/Helpdesk/Service/SoftwareProductService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/helpdesk/lib/Module/Helpdesk/Service/SoftwareProductService.php b/modules/helpdesk/lib/Module/Helpdesk/Service/SoftwareProductService.php index 58f7f51..57aef3f 100644 --- a/modules/helpdesk/lib/Module/Helpdesk/Service/SoftwareProductService.php +++ b/modules/helpdesk/lib/Module/Helpdesk/Service/SoftwareProductService.php @@ -38,7 +38,7 @@ class SoftwareProductService return $this->repository->listWithSchema(); } - private const ALLOWED_FIELD_TYPES = ['heading', 'paragraph', 'text', 'textarea', 'number', 'date', 'checkbox', 'select']; + private const ALLOWED_FIELD_TYPES = ['heading', 'paragraph', 'text', 'textarea', 'number', 'date', 'checkbox', 'select', 'user-select']; private const DISPLAY_ONLY_TYPES = ['heading', 'paragraph']; private const MAX_SCHEMA_FIELDS = 50;