Skip to content

Commit 260601c

Browse files
authored
Merge pull request #409 from bcgov/ofmcc-6328-update-sort-order
ofmcc-6328 - fix sort Funding Allocation Request
2 parents f4c827b + c7bae14 commit 260601c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/funding/FundingAllocationTab.vue

+1-1
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)