]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-19985 Reorder CrossComponentSourceViewer snippets in reading order
authorAmbroise C <ambroise.christea@sonarsource.com>
Mon, 24 Jul 2023 14:46:59 +0000 (16:46 +0200)
committersonartech <sonartech@sonarsource.com>
Mon, 24 Jul 2023 20:03:21 +0000 (20:03 +0000)
server/sonar-web/src/main/js/apps/issues/crossComponentSourceViewer/utils.ts

index 4b2eda9d13d830398d7cdb4a8e7a9d944d899c29..fe8b66271fbb2292c22e29897b381c05385974cb 100644 (file)
@@ -135,9 +135,8 @@ export function createSnippets(params: {
     []
   );
 
-  // Sort snippets by line number in the case of secondary locations
-  // Preserve location order for flows!
-  return hasSecondaryLocations ? ranges.sort((a, b) => a.start - b.start) : ranges;
+  // Sort snippets by line number
+  return ranges.sort((a, b) => a.start - b.start);
 }
 
 export function linesForSnippets(snippets: Snippet[], componentLines: LineMap) {