diff --git a/src/backend/langflow/components/io/TextInput.py b/src/backend/langflow/components/io/TextInput.py index b0d2eb0a7..3fba54fda 100644 --- a/src/backend/langflow/components/io/TextInput.py +++ b/src/backend/langflow/components/io/TextInput.py @@ -9,7 +9,7 @@ class TextInput(CustomComponent): description = "Used to pass text input to the next component." field_config = { - "value": {"display_name": "Value"}, + "value": {"display_name": "Value", "multiline": True}, } def build(self, value: Optional[str] = "") -> Text: