Skip to content

Commit 23768cd

Browse files
committed
fix TextJoin text2 input to optional
1 parent e7ad91f commit 23768cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

py/text_join.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ def INPUT_TYPES(cls):
1212
return {
1313
"required": {
1414
"text_1": ("STRING", {"multiline": True}),
15-
"text_2": ("STRING", {"multiline": True}),
15+
1616
},
1717
"optional": {
18+
"text_2": ("STRING", {"multiline": True}),
1819
"text_3": ("STRING", {"multiline": True}),
1920
"text_4": ("STRING", {"multiline": True}),
2021
}

0 commit comments

Comments
 (0)