fixed issue, mr crash if assignee/author removed from team

This commit is contained in:
Dmitriy Zaporozhets 2012-02-05 12:58:02 +02:00
parent 5a12bee37d
commit c90f1d5c8b
6 changed files with 49 additions and 14 deletions

View file

@ -2,9 +2,7 @@
= image_tag gravatar_icon(issue.assignee_email), :class => "avatar"
%span.update-author
assigned to
%strong
= link_to project_team_member_path(@project, @project.team_member_by_id(issue.author_id)), :class => "author_link" do
= issue.assignee_name
%strong= link_to_issue_assignee(issue)
- if issue.critical
%span.label.important critical
- if issue.today?

View file

@ -25,13 +25,11 @@
%div
%cite.cgray Created by
= image_tag gravatar_icon(@issue.author_email), :width => 16, :class => "lil_av"
= link_to project_team_member_path(@project, @project.team_member_by_id(@issue.author.id)) do
%strong.author= @issue.author_name
%strong.author= link_to_issue_author(@issue)
%cite.cgray and currently assigned to
= image_tag gravatar_icon(@issue.assignee_email), :width => 16, :class => "lil_av"
= link_to project_team_member_path(@project, @project.team_member_by_id(@issue.assignee.id)) do
%strong.author= @issue.assignee_name
%strong.author= link_to_issue_assignee(@issue)
%hr

View file

@ -1,9 +1,7 @@
%li.wll
= image_tag gravatar_icon(merge_request.author_email), :class => "avatar"
%span.update-author
%strong
= link_to project_team_member_path(@project, @project.team_member_by_id(merge_request.author_id)), :class => "author_link" do
= merge_request.author_name
%strong= link_to_merge_request_author(merge_request)
authored
= time_ago_in_words(merge_request.created_at)
ago

View file

@ -30,13 +30,11 @@
%div
%cite.cgray Created by
= image_tag gravatar_icon(@merge_request.author_email), :width => 16, :class => "lil_av"
= link_to project_team_member_path(@project, @project.team_member_by_id(@merge_request.author.id)) do
%strong.author= @merge_request.author_name
%strong.author= link_to_merge_request_author(@merge_request)
%cite.cgray and currently assigned to
= image_tag gravatar_icon(@merge_request.assignee_email), :width => 16, :class => "lil_av"
= link_to project_team_member_path(@project, @project.team_member_by_id(@merge_request.assignee.id)) do
%strong.author= @merge_request.assignee_name
%strong.author= link_to_merge_request_assignee(@merge_request)
%hr