mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-15 06:58:13 -05:00
fix(ui): string batch nodes' inputs get batch type
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user