Skip to content

Commit

Permalink
Update reports cap
Browse files Browse the repository at this point in the history
  • Loading branch information
Geometrically committed Jan 5, 2025
1 parent 17d6127 commit a01da54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/components/ui/report/ReportsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ defineProps({
const viewMode = ref("open");
const reports = ref([]);
let { data: rawReports } = await useAsyncData("report", () => useBaseFetch("report"));
let { data: rawReports } = await useAsyncData("report", () => useBaseFetch("report?count=1000"));
rawReports = rawReports.value.map((report) => {
report.item_id = report.item_id.replace(/"/g, "");
Expand Down

0 comments on commit a01da54

Please sign in to comment.