fix(ui): string batch nodes' inputs get batch type

This commit is contained in:
psychedelicious
2025-01-21 06:54:26 +11:00
parent 2b2ec67cd6
commit f5c5b73383

View File

@@ -132,6 +132,8 @@ export const parseSchema = (
fieldType.batch = true;
} else if (type === 'integer_batch' && propertyName === 'integers') {
fieldType.batch = true;
} else if (type === 'string_batch' && propertyName === 'strings') {
fieldType.batch = true;
}
const fieldInputTemplate = buildFieldInputTemplate(property, propertyName, fieldType);