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.
This commit is contained in:
parent
3730b80980
commit
434d8b694f
|
|
@ -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']
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue