Skip to content

Commit

Permalink
Merge pull request #94 from mekasudheer/master
Browse files Browse the repository at this point in the history
Rails 7 Remove extension while loading partials
  • Loading branch information
reidmorrison committed Nov 9, 2023
2 parents d2b6317 + 146a5d0 commit 8bf48da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -67,7 +67,7 @@

<% @job.input_categories.each do |input_categories| %>
<%= p.fields_for "input_categories_attributes[]", input_categories do |i| %>
<%= render "input_category_fields.html", f: i %>
<%= render "input_category_fields", f: i %>
<% end %>
<% end %>
</div>
Expand All @@ -81,7 +81,7 @@

<% @job.output_categories.each do |output_categories| %>
<%= p.fields_for "output_categories_attributes[]", output_categories do |o| %>
<%= render "output_category_fields.html", f: o %>
<%= render "output_category_fields", f: o %>
<% end %>
<% end %>
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/views/rocket_job_mission_control/jobs/edit.html.erb
Expand Up @@ -33,7 +33,7 @@
<div class='lead'>Input Categories</div>

<%= f.fields_for :input_categories do |i| %>
<%= render "input_category_fields.html", f: i %>
<%= render "input_category_fields", f: i %>
<% end %>
</div>
</div>
Expand All @@ -45,7 +45,7 @@
<div class='lead'>Output Categories</div>

<%= f.fields_for :output_categories do |o| %>
<%= render "output_category_fields.html", f: o %>
<%= render "output_category_fields", f: o %>
<% end %>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion lib/rocket_job_mission_control/version.rb
@@ -1,3 +1,3 @@
module RocketJobMissionControl
VERSION = "6.0.7".freeze
VERSION = "6.0.8".freeze
end

0 comments on commit 8bf48da

Please sign in to comment.