Browse Source

Fix logging not checking onChange

pull/2553/head
pythongosssss 10 months ago
parent
commit
23687da9a9
  1. 5
      web/scripts/logging.js

5
web/scripts/logging.js

@ -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", {

Loading…
Cancel
Save