Skip to content

Commit 29147ba

Browse files
committed
fix: order
1 parent 5392d03 commit 29147ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compose/neurosynth-frontend/src/pages/MetaAnalysis/components/DisplayMetaAnalysisResults.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const DisplayMetaAnalysisResults: React.FC<{
6464
if (segmentA.value === segmentB.value) continue;
6565
return segmentA.value.localeCompare(segmentB.value);
6666
} else {
67-
return orderA - orderB;
67+
return orderB - orderA;
6868
}
6969
}
7070
return 0;

0 commit comments

Comments
 (0)