fixed share output option not showing in context menu

This commit is contained in:
thecooltechguy 2024-01-05 21:26:11 -08:00
parent 4345c3f27f
commit f09bb72e67

View File

@ -563,13 +563,7 @@ function newDOMTokenList(initialTokens) {
* Check whether the node is a potential output node (img, gif or video output) * Check whether the node is a potential output node (img, gif or video output)
*/ */
const isOutputNode = (node) => { const isOutputNode = (node) => {
return [ return SUPPORTED_OUTPUT_NODE_TYPES.includes(node.type);
"VHS_VideoCombine",
"PreviewImage",
"SaveImage",
"ADE_AnimateDiffCombine",
"SaveAnimatedWEBP",
].includes(node.type);
} }
// ----------- // -----------