From e0e37b5afc519b7f7d1cd9818d271587bf18c563 Mon Sep 17 00:00:00 2001 From: Shailesh Parmar Date: Thu, 22 Dec 2022 21:10:11 +0530 Subject: [PATCH] fix redirection issue from entity details page to profiler page (#9494) --- .../pages/ProfilerDashboardPage/ProfilerDashboardPage.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/pages/ProfilerDashboardPage/ProfilerDashboardPage.tsx b/openmetadata-ui/src/main/resources/ui/src/pages/ProfilerDashboardPage/ProfilerDashboardPage.tsx index 7c73b05ffe2..b50594fdd3f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/pages/ProfilerDashboardPage/ProfilerDashboardPage.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/pages/ProfilerDashboardPage/ProfilerDashboardPage.tsx @@ -136,8 +136,9 @@ const ProfilerDashboardPage = () => { const fetchTableEntity = async () => { try { const fqn = isColumnView - ? getTableFQNFromColumnFQN(decodedEntityFQN) - : decodedEntityFQN; + ? getTableFQNFromColumnFQN(entityTypeFQN) + : entityTypeFQN; + const field = `tags, usageSummary, owner, followers${ isColumnView ? ', profile' : '' }`;