Update TextInput field_config to support multiline input

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-02-26 22:05:31 -03:00
commit 19d0da7f74

View file

@ -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: