mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-10 21:42:37 +08:00
Edited extraOptions.
Options divided in to different divs to manage them with ease.
This commit is contained in:
parent
b333b0e24d
commit
500f217a6d
@ -617,7 +617,10 @@ export class ComfyUI {
|
||||
]),
|
||||
]),
|
||||
$el("div", {id: "extraOptions", style: {width: "100%", display: "none"}}, [
|
||||
$el("label", {innerHTML: "Batch count"}, [
|
||||
$el("div",[
|
||||
|
||||
$el("label", {innerHTML: "Batch count"}),
|
||||
|
||||
$el("input", {
|
||||
id: "batchCountInputNumber",
|
||||
type: "number",
|
||||
@ -639,6 +642,14 @@ export class ComfyUI {
|
||||
this.batchCount = i.srcElement.value;
|
||||
document.getElementById("batchCountInputNumber").value = i.srcElement.value;
|
||||
},
|
||||
}),
|
||||
]),
|
||||
|
||||
$el("div",[
|
||||
$el("label",{
|
||||
for:"autoQueueCheckbox",
|
||||
innerHTML: "Auto Queue"
|
||||
// textContent: "Auto Queue"
|
||||
}),
|
||||
$el("input", {
|
||||
id: "autoQueueCheckbox",
|
||||
@ -647,11 +658,7 @@ export class ComfyUI {
|
||||
title: "Automatically queue prompt when the queue size hits 0",
|
||||
|
||||
}),
|
||||
$el("label",{
|
||||
for:"autoQueueCheckbox",
|
||||
textContent: "Auto Queue"
|
||||
})
|
||||
]),
|
||||
])
|
||||
]),
|
||||
$el("div.comfy-menu-btns", [
|
||||
$el("button", {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user