Skip to content

Commit

Permalink
Remove dependence on integrations variable (#826) (#831)
Browse files Browse the repository at this point in the history
(cherry picked from commit 4d4e28a)

Signed-off-by: Simeon Widdis <[email protected]>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent c412ffc commit e2da05b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export function AddedIntegrationsTable(props: AddedIntegrationsTableProps) {
setIsModalVisible(true);
};

const integTemplateNames = [...new Set(integrations.map((i) => i.templateName))].sort();
const integTemplateNames = [...new Set(props.data.hits.map((i) => i.templateName))].sort();

const search = {
box: {
Expand Down

0 comments on commit e2da05b

Please sign in to comment.