mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-30 03:01:54 +00:00
fix: allow output key nodeId 0
This commit is contained in:
@@ -42,7 +42,7 @@ export function getOutputKey({
|
|||||||
subfolder,
|
subfolder,
|
||||||
filename
|
filename
|
||||||
}: OutputKeyParts): string | null {
|
}: OutputKeyParts): string | null {
|
||||||
if (!nodeId || !subfolder || !filename) {
|
if (nodeId == null || !subfolder || !filename) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user