Skip to content

Commit

Permalink
[APM] Fix trace explorer enabled by default bug (elastic#162473)
Browse files Browse the repository at this point in the history
Trace explorer was enabled by default in this
[PR](elastic#162308), but there was
something missing, the fix it's done here.
  • Loading branch information
MiriamAparicio authored Jul 26, 2023
1 parent 889d3d8 commit e17530f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ import { useApmPluginContext } from '../context/apm_plugin/use_apm_plugin_contex
export function useTraceExplorerEnabledSetting() {
const { core } = useApmPluginContext();

return core.uiSettings.get<boolean>(apmTraceExplorerTab, false);
return core.uiSettings.get<boolean>(apmTraceExplorerTab, true);
}

0 comments on commit e17530f

Please sign in to comment.