Merge branch 'main' into feat/cnr
This commit is contained in:
@@ -1468,15 +1468,6 @@ class ManagerMenuDialog extends ComfyDialog {
|
||||
modifyButtonStyle(url);
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Open 'flowt.ai'",
|
||||
callback: () => {
|
||||
const url = "https://flowt.ai/";
|
||||
localStorage.setItem("wg_last_visited", url);
|
||||
window.open(url, url);
|
||||
modifyButtonStyle(url);
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Open 'esheep'",
|
||||
callback: () => {
|
||||
|
||||
@@ -1437,19 +1437,6 @@ export class CustomNodesManager {
|
||||
}
|
||||
}
|
||||
|
||||
const resUnresolved = await fetchData(`/component/get_unresolved`);
|
||||
const unresolved = resUnresolved.data;
|
||||
if (unresolved && unresolved.nodes) {
|
||||
unresolved.nodes.forEach(node_type => {
|
||||
const packs = name_to_packs[node_type];
|
||||
if(packs) {
|
||||
packs.forEach(url => {
|
||||
missing_nodes.add(url);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
const hashMap = {};
|
||||
for(let k in this.custom_nodes) {
|
||||
let item = this.custom_nodes[k];
|
||||
|
||||
Reference in New Issue
Block a user