use the iid to generate the link_to_merge_request_diff_line_note instead of id
This commit is contained in:
parent
4d7792bc38
commit
427520ac53
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue