Skip to content

Commit e8cb961

Browse files
authored
Merge branch 'main' into ofmcc-5835-deploy-with-tag
2 parents 0f0796e + 260601c commit e8cb961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/funding/FundingAllocationTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default {
7878
this.fundingReallocationRequests?.sort((a, b) => {
7979
const dateA = new Date(a.date)
8080
const dateB = new Date(b.date)
81-
return a.statusCode > b.statusCode || dateB - dateA
81+
return a.statusCode - b.statusCode || dateB - dateA
8282
})
8383
},
8484

0 commit comments

Comments
 (0)