Skip to content

Commit

Permalink
Merge branch 'main' into ofmcc-5835-deploy-with-tag
Browse files Browse the repository at this point in the history
  • Loading branch information
weskubo-cgi authored Nov 1, 2024
2 parents 0f0796e + 260601c commit e8cb961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/funding/FundingAllocationTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default {
this.fundingReallocationRequests?.sort((a, b) => {
const dateA = new Date(a.date)
const dateB = new Date(b.date)
return a.statusCode > b.statusCode || dateB - dateA
return a.statusCode - b.statusCode || dateB - dateA
})
},
Expand Down

0 comments on commit e8cb961

Please sign in to comment.