Skip to content

Commit

Permalink
Improved: the condition for dowhile loop based on updated pageSize (#616
Browse files Browse the repository at this point in the history
)
  • Loading branch information
amansinghbais committed Jan 24, 2025
1 parent 13881f7 commit fe27880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DownloadClosedCountModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ async function fetchBulkCycleCountItems() {
} else {
throw resp.data;
}
} while(resp.data.itemList?.length >= 200)
} while(resp.data.itemList?.length >= 100)
} catch(err) {
logger.error(err)
}
Expand Down

0 comments on commit fe27880

Please sign in to comment.