Spaces:
Building
on
A10G
Building
on
A10G
File size: 327 Bytes
eb9ca51 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { app } from "../../scripts/app.js";
// Adds an upload button to the nodes
app.registerExtension({
name: "Comfy.UploadImage",
async beforeRegisterNodeDef(nodeType, nodeData, app) {
if (nodeData?.input?.required?.image?.[1]?.image_upload === true) {
nodeData.input.required.upload = ["IMAGEUPLOAD"];
}
},
});
|