Multiline ChatInput
solara.lab.ChatInput
is great but it doesn't allow multi-line input (shift+enter to line break will just send the message).
I've tried solara.InputTextArea
with update_events=["keyup.enter"]
instead for linebreaks to work, and they do, but now pressing "enter" just linebreaks and doesn't send the message.
What should I do short of dropping down to js?1 Reply
Ah, found the solution: I needed
update_events=["keyup.enter.exact"]