Skip to content

Commit

Permalink
ofmcc-6328 - fix sortFundingAllocationRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
vietle-cgi committed Nov 1, 2024
1 parent f4c827b commit c7bae14
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 c7bae14

Please sign in to comment.