diff --git a/x-pack/plugins/grokdebugger/public/lib/ace/index.js b/x-pack/plugins/grokdebugger/public/lib/ace/index.js index 5c118878ee1a..a34c891bd0d2 100644 --- a/x-pack/plugins/grokdebugger/public/lib/ace/index.js +++ b/x-pack/plugins/grokdebugger/public/lib/ace/index.js @@ -5,3 +5,4 @@ */ export { GrokMode } from './grok_mode'; +export { applyEditorOptions } from './apply_editor_options'; diff --git a/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/custom_patterns_input/custom_patterns_input.js b/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/custom_patterns_input/custom_patterns_input.js index 7fd0d60b768a..7f3b3099df7b 100644 --- a/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/custom_patterns_input/custom_patterns_input.js +++ b/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/custom_patterns_input/custom_patterns_input.js @@ -7,7 +7,7 @@ import { uiModules } from 'ui/modules'; import { InitAfterBindingsWorkaround } from 'ui/compat'; import { EDITOR } from '../../../../../common/constants'; -import { applyEditorOptions } from '../../../../lib/ace/apply_editor_options'; +import { applyEditorOptions } from '../../../../lib/ace'; import template from './custom_patterns_input.html'; import './custom_patterns_input.less'; import 'ui/toggle_panel'; diff --git a/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/event_input/event_input.js b/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/event_input/event_input.js index a827289b13fd..24a1fdcbebd5 100644 --- a/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/event_input/event_input.js +++ b/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/event_input/event_input.js @@ -6,7 +6,7 @@ import { uiModules } from 'ui/modules'; import { EDITOR } from '../../../../../common/constants'; -import { applyEditorOptions } from '../../../../lib/ace/apply_editor_options'; +import { applyEditorOptions } from '../../../../lib/ace'; import template from './event_input.html'; import './event_input.less'; import 'ace'; diff --git a/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/pattern_input/pattern_input.js b/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/pattern_input/pattern_input.js index f119a40cb779..d3119849dced 100644 --- a/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/pattern_input/pattern_input.js +++ b/x-pack/plugins/grokdebugger/public/sections/grokdebugger/components/pattern_input/pattern_input.js @@ -6,10 +6,12 @@ import { uiModules } from 'ui/modules'; import { EDITOR } from '../../../../../common/constants'; -import { applyEditorOptions } from '../../../../lib/ace/apply_editor_options'; import template from './pattern_input.html'; import './pattern_input.less'; -import { GrokMode } from '../../../../lib/ace'; +import { + applyEditorOptions, + GrokMode +} from '../../../../lib/ace'; const app = uiModules.get('xpack/grokdebugger');