From 19d0da7f74acb6753d66e23930d369aa0a86e017 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 26 Feb 2024 22:05:31 -0300 Subject: [PATCH] Update TextInput field_config to support multiline input --- src/backend/langflow/components/io/TextInput.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: