mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2026-05-12 18:12:34 +08:00
Fix deprecated ui.js import in comfyui-share-openart.js
This commit is contained in:
parent
91bfd8e6d3
commit
e75889b445
@ -1,8 +1,15 @@
|
|||||||
import {app} from "../../scripts/app.js";
|
import {app} from "../../scripts/app.js";
|
||||||
import {api} from "../../scripts/api.js";
|
import {api} from "../../scripts/api.js";
|
||||||
import {ComfyDialog, $el} from "../../scripts/ui.js";
|
|
||||||
import { customAlert } from "./common.js";
|
import { customAlert } from "./common.js";
|
||||||
|
|
||||||
|
// === SHIM FOR NEW COMFYUI (removes ui.js warning) ===
|
||||||
|
let $el, ComfyDialog;
|
||||||
|
if (window?.comfyAPI?.ui) {
|
||||||
|
({ $el, ComfyDialog } = window.comfyAPI.ui);
|
||||||
|
} else {
|
||||||
|
({ $el, ComfyDialog } = await import("../../scripts/ui.js"));
|
||||||
|
}
|
||||||
|
|
||||||
const LOCAL_STORAGE_KEY = "openart_comfy_workflow_key";
|
const LOCAL_STORAGE_KEY = "openart_comfy_workflow_key";
|
||||||
const DEFAULT_HOMEPAGE_URL = "https://openart.ai/workflows/dev?developer=true";
|
const DEFAULT_HOMEPAGE_URL = "https://openart.ai/workflows/dev?developer=true";
|
||||||
//const DEFAULT_HOMEPAGE_URL = "http://localhost:8080/workflows/dev?developer=true";
|
//const DEFAULT_HOMEPAGE_URL = "http://localhost:8080/workflows/dev?developer=true";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user