From 5f0f6f0728fe5957bef3f99edb3d99c97f540ea4 Mon Sep 17 00:00:00 2001 From: Shailesh Parmar Date: Mon, 13 Dec 2021 18:28:46 +0530 Subject: [PATCH] Fix: Fix API failing issue (#1718) --- .../components/EntityInfoDrawer/EntityInfoDrawer.component.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/components/EntityInfoDrawer/EntityInfoDrawer.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/EntityInfoDrawer/EntityInfoDrawer.component.tsx index 7e4db6ccbb6..0a16b845358 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/EntityInfoDrawer/EntityInfoDrawer.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/EntityInfoDrawer/EntityInfoDrawer.component.tsx @@ -107,7 +107,7 @@ const EntityInfoDrawer = ({ } case EntityType.PIPELINE: { setIsLoading(true); - getPipelineByFqn(selectedNode.name, ['tags', 'owner', 'service']) + getPipelineByFqn(selectedNode.name, ['tags', 'owner']) .then((res: AxiosResponse) => { getServiceById('pipelineServices', res.data.service?.id) .then((serviceRes: AxiosResponse) => {