From 13a867de33c2cb2eb3fc1bb1f68d13584bcc23dc Mon Sep 17 00:00:00 2001 From: Sachin Chaurasiya Date: Thu, 16 Dec 2021 18:11:47 +0530 Subject: [PATCH] Fix: serviceType is missing from lineage table node. (#1802) --- .../components/EntityInfoDrawer/EntityInfoDrawer.component.tsx | 1 + 1 file changed, 1 insertion(+) 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 0a16b845358..9cd2784ec31 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 @@ -94,6 +94,7 @@ const EntityInfoDrawer = ({ .then((res: AxiosResponse) => { setEntityDetail(res.data); setIsLoading(false); + setServiceType(res.data.serviceType); }) .catch((err: AxiosError) => { const msg = err.message;