From 731704fa215cf1d06958a0e82eb1e1cf5ee2ac0b Mon Sep 17 00:00:00 2001 From: L2D2Grafana Date: Thu, 11 Dec 2025 08:35:15 -0800 Subject: [PATCH] Logs: fix detected_level column width --- public/app/features/explore/Logs/LogsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/explore/Logs/LogsTable.tsx b/public/app/features/explore/Logs/LogsTable.tsx index ab31f876bad..437afcfcf00 100644 --- a/public/app/features/explore/Logs/LogsTable.tsx +++ b/public/app/features/explore/Logs/LogsTable.tsx @@ -438,7 +438,7 @@ function getInitialFieldWidth(field: Field): number | undefined { } // Set constrained width for detected_level if (field.name === TABLE_DETECTED_LEVEL_FIELD_NAME) { - return 150; + return 190; } // All other fields (including body field) will auto-expand return undefined;