We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f4c827b + c7bae14 commit 260601cCopy full SHA for 260601c
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