"...models/git@developer.sourcefind.cn:Wenxuan/LightX2V.git" did not exist on "ae1125688a4e23dde97bdd0ddc17870b65a2019e"
Commit 818d0c01 authored by comfyanonymous's avatar comfyanonymous
Browse files

Merge branch 'fix-logging-setting' of https://github.com/pythongosssss/ComfyUI

parents 93bbe3f4 23687da9
......@@ -269,6 +269,9 @@ export class ComfyLogging {
id: settingId,
name: settingId,
defaultValue: true,
onChange: (value) => {
this.enabled = value;
},
type: (name, setter, value) => {
return $el("tr", [
$el("td", [
......@@ -283,7 +286,7 @@ export class ComfyLogging {
type: "checkbox",
checked: value,
onchange: (event) => {
setter((this.enabled = event.target.checked));
setter(event.target.checked);
},
}),
$el("button", {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment