Skip to content

Commit

Permalink
Merge pull request #408 from wearepal/bugfix-fix-link
Browse files Browse the repository at this point in the history
Update link destination for team dropdown to projects instead of deprecated regions
  • Loading branch information
paulthatjazz authored Aug 13, 2024
2 parents 9731804 + 8b1c6f7 commit ec497d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<div class="dropdown-menu dropdown-menu-right">
<h6 class="dropdown-header">My teams</h6>
<% current_user.teams.each do |team| %>
<%= link_to team.name, team_regions_path(team), class: "dropdown-item" %>
<%= link_to team.name, team_projects_path(team), class: "dropdown-item" %>
<% end %>
<div class="dropdown-divider"></div>
<%= link_to "Create team...", new_team_path, class: "dropdown-item" %>
Expand Down

0 comments on commit ec497d0

Please sign in to comment.