Skip to content

Commit 06e2bb9

Browse files
authored
Merge pull request #432 from ndg63276/fix/LIMS-75/show-more-visits-on-assign-container-page
[LIMS-75]: Show more than 10 visits on the assign containers page
2 parents dd812d3 + 71414ee commit 06e2bb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/js/modules/assign/routes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const routes = [
5656
props: {
5757
mview: SelectVisitView,
5858
options: {
59-
collection: new Visits(null, { queryParams: { next: 1 } })
59+
collection: new Visits(null, { queryParams: { next: 1 }, state: { pageSize: 9999 }})
6060
},
6161
breadcrumbs: [bc]
6262
}
@@ -99,4 +99,4 @@ const routes = [
9999
}
100100
]
101101

102-
export default routes
102+
export default routes

0 commit comments

Comments
 (0)