When render the investment list component with the link "see all investments", now we redirect to groups index page when a budget has multiple headings.
9 lines
269 B
Plaintext
9 lines
269 B
Plaintext
<% content_for :canonical do %>
|
|
<%= render "shared/canonical", href: budget_groups_url %>
|
|
<% end %>
|
|
|
|
<main class="budget-groups-index">
|
|
<%= header(before: back_link_to(budget_path(budget))) %>
|
|
<%= render Budgets::GroupsAndHeadingsComponent.new(budget) %>
|
|
</main>
|