From 99085f1836f0f7b4c0e635642e58dff04c287549 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Wed, 4 Jan 2023 12:59:05 +0100 Subject: [PATCH] Fix sizing of inline inbox action form --- app/views/inbox/_actions.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/inbox/_actions.html.haml b/app/views/inbox/_actions.html.haml index 1f90a371..7b24e493 100644 --- a/app/views/inbox/_actions.html.haml +++ b/app/views/inbox/_actions.html.haml @@ -2,7 +2,7 @@ .card-body .d-md-flex = bootstrap_form_tag url: inbox_path, method: :get, html: { class: "d-block" } do |f| - = f.text_field :author, value: params[:author], placeholder: t(".author.placeholder"), prepend: "@", hide_label: true, + = f.text_field :author, value: params[:author], placeholder: t(".author.placeholder"), prepend: "@", hide_label: true, wrapper: { class: "" }, append: f.button(t(".author.button"), name: nil, class: "btn btn-light", id: "ib-author") .d-flex.ms-auto.mt-2.mt-md-0 = button_to inbox_create_path, class: "btn btn-info me-auto" do