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 af19599 commit 940c8c8Copy full SHA for 940c8c8
src/components/MigrationDetails/index.jsx
@@ -207,7 +207,8 @@ function Table({ details }) {
207
filters[status] ? rows :
208
rows.concat((details[status]).map(name => ([name, status])))
209
), []).sort((a, b) => (
210
- ORDERED.findIndex(x => x[0] == a[1]) - ORDERED.findIndex(x => x[0] == b[1])
+ feedstock[b[0]]["num_descendants"] - feedstock[a[0]]["num_descendants"]
211
+ || ORDERED.findIndex(x => x[0] == a[1]) - ORDERED.findIndex(x => x[0] == b[1])
212
|| a[0].localeCompare(b[0]))
213
);
214
return (
0 commit comments