Skip to content

Commit c9733a7

Browse files
authored
fix(Healthcheck): sort issues (#3079)
1 parent 9c2fb00 commit c9733a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store/reducers/healthcheckInfo/healthcheckInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const selectIssuesTreesRoots = createSelector(getIssuesLog, (issues = []) => get
7878
export const selectLeavesIssues = createSelector(
7979
[getIssuesLog, selectIssuesTreesRoots],
8080
(data = [], roots = []) => {
81-
return roots.map((root) => getLeavesFromTree(data, root)).flat();
81+
return roots.map((root) => sortIssues(getLeavesFromTree(data, root))).flat();
8282
},
8383
);
8484

0 commit comments

Comments
 (0)