Skip to content

Commit b7e2986

Browse files
committed
pre-commit
1 parent 25957a2 commit b7e2986

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/MigrationDetails/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ function Table({ details }) {
207207
filters[status] ? rows :
208208
rows.concat((details[status]).map(name => ([name, status])))
209209
), []).sort((a, b) => (
210-
ORDERED.findIndex(x => x[0] == a[1]) - ORDERED.findIndex(x => x[0] == b[1])
210+
ORDERED.findIndex(x => x[0] == a[1]) - ORDERED.findIndex(x => x[0] == b[1])
211211
|| a[0].localeCompare(b[0]))
212212
);
213213
return (

0 commit comments

Comments
 (0)