From e4277a4b0981e4954ed9501ead7eddfcb0f174ee Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 27 Jan 2021 17:30:17 +0000 Subject: [PATCH] Convert issue comments to use bootstrap The reassign checkbox could be simplified in future by changing the expected parameter in the controller --- app/views/issues/_comments.html.erb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/views/issues/_comments.html.erb b/app/views/issues/_comments.html.erb index a04022304..6a90dbbff 100644 --- a/app/views/issues/_comments.html.erb +++ b/app/views/issues/_comments.html.erb @@ -1,4 +1,4 @@ -
+
<% comments.each do |comment| %>
@@ -13,13 +13,13 @@
<% end %>
-
-
- <%= form_for @new_comment, :url => issue_comments_path(@issue) do |f| %> - <%= richtext_area :issue_comment, :body, :cols => 10, :rows => 8, :required => true %> - <%= label_tag :reassign, t(".reassign_param") %> <%= check_box_tag :reassign, true %> -
-
- <%= f.submit %> + +
+ <%= bootstrap_form_for @new_comment, :url => issue_comments_path(@issue) do |f| %> + <%= f.richtext_field :body, :cols => 80, :rows => 20, :hide_label => true %> + <%= f.form_group do %> + <%= f.check_box :reassign, { :label => t(".reassign_param"), :id => "reassign", :name => "reassign", :checked => false }, true, false %> + <% end %> + <%= f.primary %> <% end %>
-- 2.45.1