Skip to content

Commit

Permalink
Merge pull request #99 from louishourcade/bug/glossary_limitation
Browse files Browse the repository at this point in the history
increase page size response for Glossary to show up to 500 glossary i…
  • Loading branch information
dlpzx authored Aug 1, 2022
2 parents dbb58c4 + fbd4a28 commit dc871f2
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 dc871f2

Please sign in to comment.