From 845d9c6e8961babd2314a46010cfec22056765f9 Mon Sep 17 00:00:00 2001 From: mufazalov Date: Tue, 24 Sep 2024 12:57:24 +0300 Subject: [PATCH] fix(Diagnostics): hide graph for column tables --- src/containers/Tenant/Diagnostics/DiagnosticsPages.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/Tenant/Diagnostics/DiagnosticsPages.ts b/src/containers/Tenant/Diagnostics/DiagnosticsPages.ts index 34ebe3ff4..e5f6ed94c 100644 --- a/src/containers/Tenant/Diagnostics/DiagnosticsPages.ts +++ b/src/containers/Tenant/Diagnostics/DiagnosticsPages.ts @@ -90,7 +90,7 @@ export const DATABASE_PAGES = [ ]; export const TABLE_PAGES = [overview, schema, topShards, nodes, graph, tablets, hotKeys, describe]; -export const COLUMN_TABLE_PAGES = [overview, schema, topShards, nodes, graph, tablets, describe]; +export const COLUMN_TABLE_PAGES = [overview, schema, topShards, nodes, tablets, describe]; export const DIR_PAGES = [overview, topShards, nodes, describe];