From 434d8b694f4000bd8a2f9eb9e92cd64ffba5e612 Mon Sep 17 00:00:00 2001 From: Chirag Chhatrala <60499540+chiragchhatrala@users.noreply.github.com> Date: Tue, 27 May 2025 13:50:45 +0530 Subject: [PATCH] Update FieldOptions Component to Include Additional Input Types (#768) - Expanded the `typesWithoutPlaceholder` array in `FieldOptions.vue` to include new input types: 'matrix', 'signature', 'barcode', 'scale', 'slider', and 'rating'. This enhancement allows for broader form field options, improving the flexibility and usability of the form component. These changes aim to enhance the form capabilities by accommodating a wider range of input types, thereby enriching the user experience. --- client/components/open/forms/fields/components/FieldOptions.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/open/forms/fields/components/FieldOptions.vue b/client/components/open/forms/fields/components/FieldOptions.vue index 5416ca20..eb58364b 100644 --- a/client/components/open/forms/fields/components/FieldOptions.vue +++ b/client/components/open/forms/fields/components/FieldOptions.vue @@ -635,7 +635,7 @@ export default { }, data() { return { - typesWithoutPlaceholder: ['date', 'checkbox', 'files', 'payment'], + typesWithoutPlaceholder: ['date', 'checkbox', 'files', 'payment', 'matrix', 'signature', 'barcode', 'scale', 'slider', 'rating'], editorToolbarCustom: [ ['bold', 'italic', 'underline', 'link'] ],