diff --git a/web/src/components/VersionSelect.tsx b/web/src/components/VersionSelect.tsx index 711d4f6..6ee6093 100644 --- a/web/src/components/VersionSelect.tsx +++ b/web/src/components/VersionSelect.tsx @@ -240,7 +240,7 @@ export function VersionDetails({ {inputs && (
{inputs.map((value) => { - if (!value.class_type) return <> ; + if (!value || !value.class_type) return <> ; const nodeType = customInputNodes[value.class_type]; if (nodeType) { const input_id = value.input_id;