mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): do not assign empty string to version if undefined
this causes zod to fail when building workflows
This commit is contained in:
parent
9c290f4575
commit
0a1c5bea05
@ -73,7 +73,7 @@ export const parseSchema = (
|
||||
const title = schema.title.replace('Invocation', '');
|
||||
const tags = schema.tags ?? [];
|
||||
const description = schema.description ?? '';
|
||||
const version = schema.version ?? '';
|
||||
const version = schema.version;
|
||||
|
||||
const inputs = reduce(
|
||||
schema.properties,
|
||||
|
Loading…
Reference in New Issue
Block a user