We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6499cfb commit 6c0712eCopy full SHA for 6c0712e
src/lib/litegraph/src/LGraphNode.ts
@@ -847,10 +847,8 @@ export class LGraphNode
847
if (info.widgets_values) {
848
const widgetsWithValue = this.widgets
849
.values()
850
- .filter(
851
- (w, idx) =>
852
- w.serialize !== false && idx < info.widgets_values!.length
853
- )
+ .filter((w) => w.serialize !== false)
+ .filter((_w, idx) => idx < info.widgets_values!.length)
854
widgetsWithValue.forEach(
855
(widget, i) => (widget.value = info.widgets_values![i])
856
)
0 commit comments