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.
2 parents 0f0796e + 260601c commit e8cb961Copy full SHA for e8cb961
frontend/src/components/funding/FundingAllocationTab.vue
@@ -78,7 +78,7 @@ export default {
78
this.fundingReallocationRequests?.sort((a, b) => {
79
const dateA = new Date(a.date)
80
const dateB = new Date(b.date)
81
- return a.statusCode > b.statusCode || dateB - dateA
+ return a.statusCode - b.statusCode || dateB - dateA
82
})
83
},
84
0 commit comments