mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[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.
This commit is contained in:
parent
889d3d82ca
commit
e17530fe35
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue