From 90048c84bf81db4a59a550576e1b080c08593c94 Mon Sep 17 00:00:00 2001 From: Vijay Prasanna Date: Thu, 29 Jun 2023 12:29:28 +0530 Subject: [PATCH] console (fix): Fix the redirect URL for partitions on the new tracking UI PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9680 GitOrigin-RevId: 7db3e6f5bfd726851b35f1a11088c7027d6574ec --- .../components/Services/Data/Schema/TrackTablesContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/libs/console/legacy-ce/src/lib/components/Services/Data/Schema/TrackTablesContainer.tsx b/frontend/libs/console/legacy-ce/src/lib/components/Services/Data/Schema/TrackTablesContainer.tsx index cce86458761..8b674582c89 100644 --- a/frontend/libs/console/legacy-ce/src/lib/components/Services/Data/Schema/TrackTablesContainer.tsx +++ b/frontend/libs/console/legacy-ce/src/lib/components/Services/Data/Schema/TrackTablesContainer.tsx @@ -101,7 +101,7 @@ export const TrackTablesContainer = ({ schema, dataSourceName, (table.table as PostgresTable).name, - table.type === 'BASE TABLE' + table.type !== 'VIEW' ) ) );