Skip to content

Commit 0ab0738

Browse files
authored
Fix bug in logs UI link (#80943)
1 parent b019b57 commit 0ab0738

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugins/monitoring/server/lib/ccs_utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function prefixIndexPattern(config, indexPattern, ccs, monitoringIndicesO
4040
if (isFunction(config.get)) {
4141
ccsEnabled = config.get('monitoring.ui.ccs.enabled');
4242
} else {
43-
ccsEnabled = get(config, 'monitoring.ui.ccs.enabled');
43+
ccsEnabled = get(config, 'ui.ccs.enabled');
4444
}
4545

4646
if (!ccsEnabled || !ccs) {

0 commit comments

Comments
 (0)