]> source.dussan.org Git - sonarqube.git/commitdiff
fix breadcrumbs order on the code page
authorStas Vilchik <vilchiks@gmail.com>
Tue, 12 Jan 2016 14:44:33 +0000 (15:44 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Tue, 12 Jan 2016 14:56:06 +0000 (15:56 +0100)
server/sonar-web/src/main/js/api/components.js

index 8a6d69de6cc8f1883decf76d101d99cc5502cbfe..3594af8a1a86cfd949c487cc810d394295de4a7f 100644 (file)
@@ -84,5 +84,8 @@ export function getParents ({ id, key }) {
 export function getBreadcrumbs ({ id, key }) {
   const url = baseUrl + '/api/components/show';
   const data = id ? { id } : { key };
-  return getJSON(url, data).then(r => [...r.ancestors, r.component]);
+  return getJSON(url, data).then(r => {
+    const reversedAncestors = [...r.ancestors].reverse();
+    return [...reversedAncestors, r.component];
+  });
 }