diff --git a/CHANGELOG-cat-1147.md b/CHANGELOG-cat-1147.md new file mode 100644 index 0000000000..ff2210e32b --- /dev/null +++ b/CHANGELOG-cat-1147.md @@ -0,0 +1 @@ +- Fix display of provenance table for datasets with large ancestor trees. diff --git a/context/app/static/js/hooks/useEntityData.ts b/context/app/static/js/hooks/useEntityData.ts index d80436a254..ebd9cb9d7b 100644 --- a/context/app/static/js/hooks/useEntityData.ts +++ b/context/app/static/js/hooks/useEntityData.ts @@ -7,6 +7,7 @@ export const useEntityQuery = (uuid: string | string[], source?: string[]) => { () => ({ query: { ids: { values: typeof uuid === 'string' ? [uuid] : uuid } }, _source: source, + size: 10000, }), [uuid, source], );