Skip to content

Commit a49007a

Browse files
authored
fix(api-nodes): allow negative_prompt PixVerse to be multiline (#10196)
1 parent 6ae3515 commit a49007a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

comfy_api_nodes/nodes_pixverse.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def define_schema(cls) -> comfy_io.Schema:
146146
comfy_io.String.Input(
147147
"negative_prompt",
148148
default="",
149-
force_input=True,
149+
multiline=True,
150150
tooltip="An optional text description of undesired elements on an image.",
151151
optional=True,
152152
),
@@ -284,7 +284,7 @@ def define_schema(cls) -> comfy_io.Schema:
284284
comfy_io.String.Input(
285285
"negative_prompt",
286286
default="",
287-
force_input=True,
287+
multiline=True,
288288
tooltip="An optional text description of undesired elements on an image.",
289289
optional=True,
290290
),
@@ -425,7 +425,7 @@ def define_schema(cls) -> comfy_io.Schema:
425425
comfy_io.String.Input(
426426
"negative_prompt",
427427
default="",
428-
force_input=True,
428+
multiline=True,
429429
tooltip="An optional text description of undesired elements on an image.",
430430
optional=True,
431431
),

0 commit comments

Comments
 (0)