Skip to content

Commit

Permalink
Fix partial rendering paths in allocation details view
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew committed Mar 3, 2025
1 parent 8f6affb commit 5b925d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/allocations/_details.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<div class="row mt-md-3">
<div class="col-md-5 col-xl-12">
<% if @allocation.completed? %>
<%= render 'completed_allocation_details' %>
<%= render 'allocations/completed_allocation_details' %>
<% else %>
<%= render 'allocation_details' %>
<%= render 'allocations/allocation_details' %>
<% end %>
</div>
</div>
Expand Down

0 comments on commit 5b925d6

Please sign in to comment.