File tree Expand file tree Collapse file tree
x-pack/platform/plugins/shared/entity_store/server Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 * 2.0.
66 */
77
8- import type { EntityType } from '../../common/domain/definitions/entity_schema' ;
8+ import type { EntityType } from '../../../ common/domain/definitions/entity_schema' ;
99import type { LogExtractionConfig } from '../saved_objects' ;
1010import {
1111 LATEST_LOG_EXTRACTION_DEFAULTS ,
Original file line number Diff line number Diff line change 55 * 2.0.
66 */
77
8- import type { EntityType } from '../../common/domain/definitions/entity_schema' ;
8+ import type { EntityType } from '../../../ common/domain/definitions/entity_schema' ;
99import type { LogExtractionConfig , LogExtractionTypeOverride } from '../saved_objects' ;
1010import {
1111 LATEST_LOG_EXTRACTION_DEFAULTS ,
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export function registerInstall(router: EntityStorePluginRouter) {
6262 assetManager ,
6363 req ,
6464 res ,
65- logExtraction ?. additionalIndexPatterns
65+ logExtraction ?. additionalIndexPatterns ?? undefined
6666 ) ;
6767 if ( forbidden ) return forbidden ;
6868 const { engines } = await assetManager . getStatus ( ) ;
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export function registerUpdate(router: EntityStorePluginRouter) {
6565 assetManager ,
6666 req ,
6767 res ,
68- logExtraction ?. additionalIndexPatterns
68+ logExtraction ?. additionalIndexPatterns ?? undefined
6969 ) ;
7070 if ( forbidden ) return forbidden ;
7171
You can’t perform that action at this time.
0 commit comments