Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
77c124c5
Commit
77c124c5
authored
Sep 24, 2023
by
comfyanonymous
Browse files
Fix typo.
parent
76cdc809
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
nodes.py
nodes.py
+1
-1
web/scripts/app.js
web/scripts/app.js
+1
-0
No files found.
nodes.py
View file @
77c124c5
...
...
@@ -1604,7 +1604,7 @@ NODE_CLASS_MAPPINGS = {
"ImageBatch"
:
ImageBatch
,
"ImagePadForOutpaint"
:
ImagePadForOutpaint
,
"EmptyImage"
:
EmptyImage
,
"ConditioningAverage
"
:
ConditioningAverage
,
"ConditioningAverage"
:
ConditioningAverage
,
"ConditioningCombine"
:
ConditioningCombine
,
"ConditioningConcat"
:
ConditioningConcat
,
"ConditioningSetArea"
:
ConditioningSetArea
,
...
...
web/scripts/app.js
View file @
77c124c5
...
...
@@ -1322,6 +1322,7 @@ export class ComfyApp {
for
(
let
n
of
graphData
.
nodes
)
{
// Patch T2IAdapterLoader to ControlNetLoader since they are the same node now
if
(
n
.
type
==
"
T2IAdapterLoader
"
)
n
.
type
=
"
ControlNetLoader
"
;
if
(
n
.
type
==
"
ConditioningAverage
"
)
n
.
type
=
"
ConditioningAverage
"
;
//typo fix
// Find missing node types
if
(
!
(
n
.
type
in
LiteGraph
.
registered_node_types
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment