]> git.openstreetmap.org Git - rails.git/commitdiff
Make report type a required field
authorTom Hughes <tom@compton.nu>
Sun, 10 Jun 2018 16:16:33 +0000 (17:16 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 10 Jun 2018 16:16:33 +0000 (17:16 +0100)
app/views/reports/new.html.erb

index 7023667fe7317737428ccbeb69ed7ce3cfbb82ec..d748bd7474b46e4cb1217a84b2042ae89c01a03a 100644 (file)
@@ -24,7 +24,7 @@
       <ul>
       <% Report.categories_for(@report.issue.reportable).each do |c| %>
         <li>
-          <%= radio_button :report, :category, c %>
+          <%= radio_button :report, :category, c, :required => true %>
           <%= label_tag "report_category_#{c}", t(".categories.#{@report.issue.reportable.class.name.underscore}.#{c}") %> <br/>
         </li>
       <% end %>
@@ -32,7 +32,7 @@
     </div>
 
     <div class='form-row'>
-      <%= text_area :report, :details, :cols => 20, :rows => 5, placeholder: t('.details'), required: true %>
+      <%= text_area :report, :details, :cols => 20, :rows => 5, placeholder: t('.details'), :required => true %>
     </div>
 
     <div class='buttons'>