diff --git a/web/src/components/VersionSelect.tsx b/web/src/components/VersionSelect.tsx index 48aadba..66be4dc 100644 --- a/web/src/components/VersionSelect.tsx +++ b/web/src/components/VersionSelect.tsx @@ -203,6 +203,7 @@ export function CreateDeploymentButton({ const customInputNodes: Record = { ComfyUIDeployExternalText: "string", + ComfyUIDeployExternalImage: "string - image url", }; export function VersionDetails({ @@ -232,7 +233,8 @@ export function VersionDetails({ const defaultValue = value.inputs.default_value; return ( <> - {input_id} {nodeType} {defaultValue} + {input_id} {nodeType}{" "} + {defaultValue} ); }