mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
fix ueba store (#115842)
This commit is contained in:
parent
e37c25991e
commit
8a0a96e422
1 changed files with 3 additions and 7 deletions
|
@ -384,10 +384,8 @@ export class Plugin implements IPlugin<PluginSetup, PluginStart, SetupPlugins, S
|
|||
...subPlugins.hosts.storageTimelines!.timelineById,
|
||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||||
...subPlugins.network.storageTimelines!.timelineById,
|
||||
...(this.experimentalFeatures.uebaEnabled && subPlugins.ueba != null
|
||||
? // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||||
subPlugins.ueba.storageTimelines!.timelineById
|
||||
: {}),
|
||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||||
...subPlugins.ueba.storageTimelines!.timelineById,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
@ -418,9 +416,7 @@ export class Plugin implements IPlugin<PluginSetup, PluginStart, SetupPlugins, S
|
|||
{
|
||||
...subPlugins.hosts.store.reducer,
|
||||
...subPlugins.network.store.reducer,
|
||||
...(this.experimentalFeatures.uebaEnabled && subPlugins.ueba != null
|
||||
? subPlugins.ueba.store.reducer
|
||||
: {}),
|
||||
...subPlugins.ueba.store.reducer,
|
||||
timeline: timelineReducer,
|
||||
...subPlugins.management.store.reducer,
|
||||
...tGridReducer,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue