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 25957a2 commit b7e2986Copy full SHA for b7e2986
src/components/MigrationDetails/index.jsx
@@ -207,7 +207,7 @@ 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])
+ ORDERED.findIndex(x => x[0] == a[1]) - ORDERED.findIndex(x => x[0] == b[1])
211
|| a[0].localeCompare(b[0]))
212
);
213
return (
0 commit comments