diff --git a/x-pack/plugins/logstash/public/application/components/pipeline_editor/__snapshots__/pipeline_editor.test.js.snap b/x-pack/plugins/logstash/public/application/components/pipeline_editor/__snapshots__/pipeline_editor.test.js.snap index 2bca876b67082..f635f810d1cae 100644 --- a/x-pack/plugins/logstash/public/application/components/pipeline_editor/__snapshots__/pipeline_editor.test.js.snap +++ b/x-pack/plugins/logstash/public/application/components/pipeline_editor/__snapshots__/pipeline_editor.test.js.snap @@ -1,7 +1,7 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`PipelineEditor component includes required error message for falsy pipeline id 1`] = ` - - + `; exports[`PipelineEditor component invalidates form for invalid pipeline id input 1`] = ` - - + `; exports[`PipelineEditor component invalidates form for pipeline id with spaces 1`] = ` - - + `; exports[`PipelineEditor component matches snapshot for clone pipeline 1`] = ` - - + `; exports[`PipelineEditor component matches snapshot for create pipeline 1`] = ` - - + `; exports[`PipelineEditor component matches snapshot for edit pipeline 1`] = ` - - + `; diff --git a/x-pack/plugins/logstash/public/application/components/pipeline_editor/pipeline_editor.js b/x-pack/plugins/logstash/public/application/components/pipeline_editor/pipeline_editor.js index 0f0cf333b6ebd..a47672fd8a229 100644 --- a/x-pack/plugins/logstash/public/application/components/pipeline_editor/pipeline_editor.js +++ b/x-pack/plugins/logstash/public/application/components/pipeline_editor/pipeline_editor.js @@ -22,7 +22,7 @@ import { EuiFieldText, EuiForm, EuiFormRow, - EuiPageContentBody_Deprecated as EuiPageContentBody, + EuiPageSection, EuiSelect, EuiSpacer, EuiPageHeader, @@ -266,7 +266,7 @@ class PipelineEditorUi extends React.Component { const { intl } = this.props; return ( - )} - + ); } } diff --git a/x-pack/plugins/logstash/public/application/components/pipeline_list/pipeline_list.js b/x-pack/plugins/logstash/public/application/components/pipeline_list/pipeline_list.js index 0729ad5ce8b57..b80c0522f9aa1 100644 --- a/x-pack/plugins/logstash/public/application/components/pipeline_list/pipeline_list.js +++ b/x-pack/plugins/logstash/public/application/components/pipeline_list/pipeline_list.js @@ -12,7 +12,7 @@ import { EuiCallOut, EuiEmptyPrompt, EuiLoadingSpinner, - EuiPageContentBody_Deprecated as EuiPageContentBody, + EuiPageSection, EuiPageHeader, EuiSpacer, } from '@elastic/eui'; @@ -291,7 +291,7 @@ class PipelineListUi extends React.Component { const { clonePipeline, createPipeline, isReadOnly, openPipeline } = this.props; const { isSelectable, message, pipelines, selection, showConfirmDeleteModal } = this.state; return ( - + @@ -329,7 +329,7 @@ class PipelineListUi extends React.Component { showAddRoleAlert={this.state.showAddRoleAlert} showEnableMonitoringAlert={this.state.showEnableMonitoringAlert} /> - + ); } }