diff options
-rw-r--r-- | app/views/application/_chat.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/application/_chat.html.erb b/app/views/application/_chat.html.erb index f8aa4ad..2606fab 100644 --- a/app/views/application/_chat.html.erb +++ b/app/views/application/_chat.html.erb @@ -1,6 +1,6 @@ <% if current_char %> <div data-controller="chat" class="flex flex-col h-full text-sm"> - <div data-chat-target="output" id="chat_output" class="overflow-auto flex-grow"> + <div data-chat-target="output" id="chat_output" class="overflow-auto overflow-x-hidden break-words flex-grow"> </div> <div class="flex-none"> <%= form_with model: ChatMessage.new, html: { autocomplete: "off" }, local: false, |