We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9559678 commit 912dfe0Copy full SHA for 912dfe0
pyproject.toml
@@ -1,7 +1,7 @@
1
[project]
2
name = "comfyui-custom-scripts"
3
description = "Enhancements & experiments for ComfyUI, mostly focusing on UI features"
4
-version = "1.2.2"
+version = "1.2.3"
5
license = { file = "LICENSE" }
6
7
[project.urls]
web/js/betterCombos.js
@@ -470,7 +470,7 @@ app.registerExtension({
470
let prev = undefined;
471
modelWidget.callback = function () {
472
let ret = modelCb?.apply(this, arguments) ?? modelWidget.value;
473
- if ("content" in ret) {
+ if (typeof ret === "object" && "content" in ret) {
474
ret = ret.content;
475
modelWidget.value = ret;
476
}
0 commit comments