From e17530fe359379c23cbab6fa0b321f7879475398 Mon Sep 17 00:00:00 2001 From: Miriam <31922082+MiriamAparicio@users.noreply.github.com> Date: Wed, 26 Jul 2023 10:59:27 +0100 Subject: [PATCH] [APM] Fix trace explorer enabled by default bug (#162473) Trace explorer was enabled by default in this [PR](https://github.com/elastic/kibana/pull/162308), but there was something missing, the fix it's done here. --- .../apm/public/hooks/use_trace_explorer_enabled_setting.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/apm/public/hooks/use_trace_explorer_enabled_setting.ts b/x-pack/plugins/apm/public/hooks/use_trace_explorer_enabled_setting.ts index 51fd5f32875da..39c59e37f4d5b 100644 --- a/x-pack/plugins/apm/public/hooks/use_trace_explorer_enabled_setting.ts +++ b/x-pack/plugins/apm/public/hooks/use_trace_explorer_enabled_setting.ts @@ -11,5 +11,5 @@ import { useApmPluginContext } from '../context/apm_plugin/use_apm_plugin_contex export function useTraceExplorerEnabledSetting() { const { core } = useApmPluginContext(); - return core.uiSettings.get(apmTraceExplorerTab, false); + return core.uiSettings.get(apmTraceExplorerTab, true); }