From f09bb72e67db99e58ad4345ec5892692fc24e834 Mon Sep 17 00:00:00 2001 From: thecooltechguy Date: Fri, 5 Jan 2024 21:26:11 -0800 Subject: [PATCH] fixed share output option not showing in context menu --- js/comfyui-manager.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/js/comfyui-manager.js b/js/comfyui-manager.js index aa4c4e43..fd1f2d33 100644 --- a/js/comfyui-manager.js +++ b/js/comfyui-manager.js @@ -563,13 +563,7 @@ function newDOMTokenList(initialTokens) { * Check whether the node is a potential output node (img, gif or video output) */ const isOutputNode = (node) => { - return [ - "VHS_VideoCombine", - "PreviewImage", - "SaveImage", - "ADE_AnimateDiffCombine", - "SaveAnimatedWEBP", - ].includes(node.type); + return SUPPORTED_OUTPUT_NODE_TYPES.includes(node.type); } // -----------