From d7ed683dbea9391af0f4ee170dcd60f2638c4003 Mon Sep 17 00:00:00 2001 From: "Jesse C. Fisher" Date: Mon, 4 Dec 2023 12:44:12 +0000 Subject: [PATCH] Improve Send Message button text --- app/views/layouts/_new_message_form.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/_new_message_form.html.haml b/app/views/layouts/_new_message_form.html.haml index d37583cd..18780564 100644 --- a/app/views/layouts/_new_message_form.html.haml +++ b/app/views/layouts/_new_message_form.html.haml @@ -1,3 +1,3 @@ = form_with(model: [@room, @message], remote: true) do |f| = f.text_field :content, id: 'chat-text', class: "form-control msg-content", autocomplete: 'off' - = f.submit data: { disable_with: false } + = f.submit "Send Message", data: { disable_with: false }