use the iid to generate the link_to_merge_request_diff_line_note instead of id

This commit is contained in:
Peter Golm 2014-01-18 19:11:42 +01:00
parent 4d7792bc38
commit 427520ac53

View file

@ -17,7 +17,7 @@ module NotesHelper
def link_to_merge_request_diff_line_note(note)
if note.for_merge_request_diff_line? and note.diff
link_to "#{note.diff_file_name}:L#{note.diff_new_line}", diffs_project_merge_request_path(note.project, note.noteable_id, anchor: note.line_code)
link_to "#{note.diff_file_name}:L#{note.diff_new_line}", diffs_project_merge_request_path(note.project, note.noteable, anchor: note.line_code)
end
end