Skip to content
Snippets Groups Projects
Commit 42c2064a authored by Rémy Coutable's avatar Rémy Coutable
Browse files

Sort line notes used in parallel diff by created_at

Fixes #13464.
parent 28d42a33
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -69,7 +69,7 @@ module DiffHelper
end
 
def line_comments
@line_comments ||= @line_notes.select(&:active?).group_by(&:line_code)
@line_comments ||= @line_notes.select(&:active?).sort_by(&:created_at).group_by(&:line_code)
end
 
def organize_comments(type_left, type_right, line_code_left, line_code_right)
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