Skip to content

Commit

Permalink
Fix bug in logs UI link (#80943) (#81103)
Browse files Browse the repository at this point in the history
Co-authored-by: PavithraCP <31021423+PavithraCP@users.noreply.github.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 20, 2020
1 parent 94d759c commit ab50aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/monitoring/server/lib/ccs_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function prefixIndexPattern(config, indexPattern, ccs, monitoringIndicesO
if (isFunction(config.get)) {
ccsEnabled = config.get('monitoring.ui.ccs.enabled');
} else {
ccsEnabled = get(config, 'monitoring.ui.ccs.enabled');
ccsEnabled = get(config, 'ui.ccs.enabled');
}

if (!ccsEnabled || !ccs) {
Expand Down

0 comments on commit ab50aaa

Please sign in to comment.