From d7ded807a289d96416d690454e45681daf58c5a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Jamr=C3=B3z?= Date: Thu, 1 Feb 2024 15:09:48 +0100 Subject: [PATCH] Explore: Disable cursor sync (#81698) --- public/app/features/explore/Graph/ExploreGraph.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/features/explore/Graph/ExploreGraph.tsx b/public/app/features/explore/Graph/ExploreGraph.tsx index 97ac62ec6a5..2d3c8a47489 100644 --- a/public/app/features/explore/Graph/ExploreGraph.tsx +++ b/public/app/features/explore/Graph/ExploreGraph.tsx @@ -168,7 +168,8 @@ export function ExploreGraph({ const panelContext: PanelContext = { eventsScope: 'explore', eventBus, - sync: () => DashboardCursorSync.Crosshair, + // TODO: Re-enable DashboardCursorSync.Crosshair when #81505 is fixed + sync: () => DashboardCursorSync.Off, onToggleSeriesVisibility(label: string, mode: SeriesVisibilityChangeMode) { setFieldConfig(seriesVisibilityConfigFactory(label, mode, fieldConfig, data)); },