<% if current_char %>
<%= form_with model: ChatMessage.new, html: { autocomplete: "off" }, local: false, data: { action: "chat#send" }, class: "flex" do |f| %> <%= f.collection_select :chat_room_id, ChatRoom.accessible_to(current_char.user), :id, :short_name, class: "flex-none" %> <%= f.text_field :body, size: "1", maxlength: 255, required: true, data: { chat_target: "message" }, class: "flex-grow inline-flex" %> <% end %>
<% end %>