Skip to content

Commit

Permalink
Remove dependence on integrations variable (opensearch-project#826)
Browse files Browse the repository at this point in the history
Signed-off-by: Simeon Widdis <[email protected]>
  • Loading branch information
Swiddis authored Aug 3, 2023
1 parent ca5ea39 commit 4d4e28a
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 4d4e28a

Please sign in to comment.