Skip to content

Commit

Permalink
fix TextJoin text2 input to optional
Browse files Browse the repository at this point in the history
  • Loading branch information
chflame163 committed May 20, 2024
1 parent e7ad91f commit 23768cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion py/text_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ def INPUT_TYPES(cls):
return {
"required": {
"text_1": ("STRING", {"multiline": True}),
"text_2": ("STRING", {"multiline": True}),

},
"optional": {
"text_2": ("STRING", {"multiline": True}),
"text_3": ("STRING", {"multiline": True}),
"text_4": ("STRING", {"multiline": True}),
}
Expand Down

0 comments on commit 23768cd

Please sign in to comment.