mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-04-20 03:13:30 +00:00
Remove useless call to /object_info
This commit is contained in:
parent
db27b0405a
commit
bfb13f5eee
@ -174,7 +174,7 @@ const els = {}
|
|||||||
// const ctxMenu = LiteGraph.ContextMenu;
|
// const ctxMenu = LiteGraph.ContextMenu;
|
||||||
app.registerExtension({
|
app.registerExtension({
|
||||||
name: id,
|
name: id,
|
||||||
init() {
|
addCustomNodeDefs(node_defs) {
|
||||||
const sortObjectKeys = (unordered) => {
|
const sortObjectKeys = (unordered) => {
|
||||||
return Object.keys(unordered).sort().reduce((obj, key) => {
|
return Object.keys(unordered).sort().reduce((obj, key) => {
|
||||||
obj[key] = unordered[key];
|
obj[key] = unordered[key];
|
||||||
@ -182,10 +182,10 @@ app.registerExtension({
|
|||||||
}, {});
|
}, {});
|
||||||
};
|
};
|
||||||
|
|
||||||
const getSlotTypes = async () => {
|
function getSlotTypes() {
|
||||||
var types = [];
|
var types = [];
|
||||||
|
|
||||||
const defs = await api.getNodeDefs();
|
const defs = node_defs;
|
||||||
for (const nodeId in defs) {
|
for (const nodeId in defs) {
|
||||||
const nodeData = defs[nodeId];
|
const nodeData = defs[nodeId];
|
||||||
|
|
||||||
@ -212,8 +212,8 @@ app.registerExtension({
|
|||||||
return types;
|
return types;
|
||||||
};
|
};
|
||||||
|
|
||||||
const completeColorPalette = async (colorPalette) => {
|
function completeColorPalette(colorPalette) {
|
||||||
var types = await getSlotTypes();
|
var types = getSlotTypes();
|
||||||
|
|
||||||
for (const type of types) {
|
for (const type of types) {
|
||||||
if (!colorPalette.colors.node_slot[type]) {
|
if (!colorPalette.colors.node_slot[type]) {
|
||||||
|
Loading…
Reference in New Issue
Block a user