Skip to content

Commit

Permalink
Merge pull request #6467 from bgeuken/fix_issue_6466
Browse files Browse the repository at this point in the history
Fix 500 error when a user owns a project, but not a package
  • Loading branch information
bgeuken committed Dec 5, 2018
2 parents feeb2b5 + cb1a557 commit 4208496
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api/app/views/webui2/webui/user/_involvement.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@
- owned.each do |package_name, project_name|
%tr
%td
= link_to(package_name, package_show_path(package: package_name, project: project_name))
- if package_name
= link_to(package_name, package_show_path(package: package_name, project: project_name))
%td
= link_to(project_name, project_show_path(project: project_name))

Expand Down

0 comments on commit 4208496

Please sign in to comment.