Skip to content

Commit

Permalink
increase page size response for Glossary to show up to 500 glossary i…
Browse files Browse the repository at this point in the history
…tems
  • Loading branch information
louishourcade committed Jul 22, 2022
1 parent dbb58c4 commit fbd4a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/Glossaries/GlossaryManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const GlossaryManagement = (props) => {
setFetchingItems(true);
setData(glossary);
const response = await client.query(
listGlossaryTree({ nodeUri: glossary.nodeUri })
listGlossaryTree({ nodeUri: glossary.nodeUri, filter: {pageSize: 500} })
);
if (!response.errors && response.data.getGlossary !== null) {
setItems({ ...response.data.getGlossary.tree });
Expand Down

0 comments on commit fbd4a28

Please sign in to comment.