We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c2fb00 commit c9733a7Copy full SHA for c9733a7
src/store/reducers/healthcheckInfo/healthcheckInfo.ts
@@ -78,7 +78,7 @@ const selectIssuesTreesRoots = createSelector(getIssuesLog, (issues = []) => get
78
export const selectLeavesIssues = createSelector(
79
[getIssuesLog, selectIssuesTreesRoots],
80
(data = [], roots = []) => {
81
- return roots.map((root) => getLeavesFromTree(data, root)).flat();
+ return roots.map((root) => sortIssues(getLeavesFromTree(data, root))).flat();
82
},
83
);
84
0 commit comments