Skip to content

Commit

Permalink
Improved: Changed sorting order to display uploaded files in descendi…
Browse files Browse the repository at this point in the history
…ng order (#457).
  • Loading branch information
ravilodhi committed Sep 19, 2024
1 parent f07a1f3 commit f94215d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/modules/count/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const actions: ActionTree<CountState, RootState> = {
const resp = await CountService.fetchCycleCountImportSystemMessages({
systemMessageTypeId: "ImportInventoryCounts",
initDate_from: fifteenMinutesEarlier.toMillis(),
orderByField: 'processedDate desc,initDate desc',
orderByField: 'initDate desc, processedDate desc',
pageSize: 10
})
if (!hasError(resp)) {
Expand Down

0 comments on commit f94215d

Please sign in to comment.