diff --git a/packages/entities/entities-plugins/src/components/PluginForm.vue b/packages/entities/entities-plugins/src/components/PluginForm.vue index 90743e0f8e..8723bf696b 100644 --- a/packages/entities/entities-plugins/src/components/PluginForm.vue +++ b/packages/entities/entities-plugins/src/components/PluginForm.vue @@ -523,6 +523,10 @@ const buildFormSchema = (parentKey: string, response: Record, initi } } + if (scheme.type === 'textArea') { + initialFormSchema[field].type = 'textArea' + } + // map -> object-advanced if (scheme.type === 'map') { initialFormSchema[field].type = 'object-advanced' @@ -697,6 +701,10 @@ const buildFormSchema = (parentKey: string, response: Record, initi } } + if (scheme.type === 'textArea') { + initialFormSchema[field].type = 'textArea' + } + // required fields, if it's boolean (a checkbox) it will be marked as required even though it isn't if (scheme.required && scheme.type !== 'boolean') { initialFormSchema[field].required = true