From 6b543d22f947091ce2037db20de907abd69d4b22 Mon Sep 17 00:00:00 2001 From: L2D2Grafana Date: Wed, 10 Dec 2025 12:12:44 -0800 Subject: [PATCH] Logs: remove false --- public/app/features/explore/Logs/LogsTableWrap.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/explore/Logs/LogsTableWrap.tsx b/public/app/features/explore/Logs/LogsTableWrap.tsx index 3ad3279fac5..51a6ec9124b 100644 --- a/public/app/features/explore/Logs/LogsTableWrap.tsx +++ b/public/app/features/explore/Logs/LogsTableWrap.tsx @@ -218,7 +218,7 @@ export function LogsTableWrap(props: Props) { // Check displayedFields first, then fall back to current value const isActiveInDisplayedFields = displayedFields.includes(label); const currentMeta = columnsWithMetaRef.current?.[label]; - const shouldBeActive = isActiveInDisplayedFields || currentMeta?.active || value.active || false; + const shouldBeActive = isActiveInDisplayedFields || currentMeta?.active || value.active; const index = isActiveInDisplayedFields ? displayedFields.indexOf(label) : (currentMeta?.index ?? value.index);