mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2026-01-29 23:40:16 +08:00
rearrange order.
This commit is contained in:
parent
8ae7f40e16
commit
cf2e95f8db
@ -1174,15 +1174,6 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
ShareDialogChooser.instance.show();
|
ShareDialogChooser.instance.show();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: "Open 'esheep'",
|
|
||||||
callback: () => {
|
|
||||||
const url = "https://www.esheep.com";
|
|
||||||
localStorage.setItem("wg_last_visited", url);
|
|
||||||
window.open(url, url);
|
|
||||||
modifyButtonStyle(url);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Open 'openart.ai'",
|
title: "Open 'openart.ai'",
|
||||||
callback: () => {
|
callback: () => {
|
||||||
@ -1219,6 +1210,15 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
modifyButtonStyle(url);
|
modifyButtonStyle(url);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Open 'esheep'",
|
||||||
|
callback: () => {
|
||||||
|
const url = "https://www.esheep.com";
|
||||||
|
localStorage.setItem("wg_last_visited", url);
|
||||||
|
window.open(url, url);
|
||||||
|
modifyButtonStyle(url);
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Close",
|
title: "Close",
|
||||||
callback: () => {
|
callback: () => {
|
||||||
|
|||||||
@ -264,16 +264,6 @@ export class ShareDialogChooser extends ComfyDialog {
|
|||||||
}
|
}
|
||||||
createButtons() {
|
createButtons() {
|
||||||
const buttons = [
|
const buttons = [
|
||||||
{
|
|
||||||
key: "esheep",
|
|
||||||
textContent: "eSheep",
|
|
||||||
website: "https://www.esheep.com",
|
|
||||||
description: "Share & download thousands of ComfyUI workflows on <a style='color:white;' href='https://www.esheep.com' target='_blank'>esheep.com</a>",
|
|
||||||
onclick: () => {
|
|
||||||
shareToEsheep();
|
|
||||||
this.close();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: "openart",
|
key: "openart",
|
||||||
textContent: "OpenArt AI",
|
textContent: "OpenArt AI",
|
||||||
@ -316,6 +306,16 @@ export class ShareDialogChooser extends ComfyDialog {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "esheep",
|
||||||
|
textContent: "eSheep",
|
||||||
|
website: "https://www.esheep.com",
|
||||||
|
description: "Share & download thousands of ComfyUI workflows on <a style='color:white;' href='https://www.esheep.com' target='_blank'>esheep.com</a>",
|
||||||
|
onclick: () => {
|
||||||
|
shareToEsheep();
|
||||||
|
this.close();
|
||||||
|
}
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
function createShareButtonsWithDescriptions() {
|
function createShareButtonsWithDescriptions() {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user