From 7a60c357d83dd28a3fcd60df434483e78db5d078 Mon Sep 17 00:00:00 2001 From: BennyKok Date: Thu, 21 Dec 2023 00:45:47 +0800 Subject: [PATCH] feat(web): add ComfyUIDeployExternalImage display --- web/src/components/VersionSelect.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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} ); }