diff --git a/frontend/src/components/funding/FundingAllocationTab.vue b/frontend/src/components/funding/FundingAllocationTab.vue index b6d4ae31..9e6eb662 100644 --- a/frontend/src/components/funding/FundingAllocationTab.vue +++ b/frontend/src/components/funding/FundingAllocationTab.vue @@ -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 }) },