Skip to content
Snippets Groups Projects
Commit 568ce1ed authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix notes for commits inside MR being squashed in one discussion

parent 64fb2c59
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -71,7 +71,6 @@ class NotesController < ProjectResourceController
 
# Helps to distinguish e.g. commit notes in mr notes list
def note_for_main_target?(note)
note.for_wall? ||
(@target_type.camelize == note.noteable_type && !note.for_diff_line?)
(@target_type.camelize == note.noteable_type && !note.for_diff_line?)
end
end
Loading
Loading
@@ -88,7 +88,7 @@ class Note < ActiveRecord::Base
end
 
def discussion_id
@discussion_id ||= [:discussion, noteable_type.try(:underscore), noteable_id, line_code].join("-").to_sym
@discussion_id ||= [:discussion, noteable_type.try(:underscore), noteable_id || commit_id, line_code].join("-").to_sym
end
 
# Returns true if this is a downvote note,
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment