make Message field have no handles
This commit is contained in:
parent
87f72a2eb3
commit
32b92c5e1c
1 changed files with 10 additions and 0 deletions
|
|
@ -10,6 +10,16 @@ class ChatInput(ChatComponent):
|
|||
description = "Get chat inputs from the Interaction Panel."
|
||||
icon = "ChatInput"
|
||||
|
||||
def build_config(self):
|
||||
build_config = super().build_config()
|
||||
build_config["input_value"] = {
|
||||
"input_types": [],
|
||||
"display_name": "Message",
|
||||
"multiline": True,
|
||||
}
|
||||
|
||||
return build_config
|
||||
|
||||
def build(
|
||||
self,
|
||||
sender: Optional[str] = "User",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue