Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
EuiFieldText,
EuiForm,
EuiFormRow,
EuiPageContentBody_Deprecated as EuiPageContentBody,
EuiPageSection,
EuiSelect,
EuiSpacer,
EuiPageHeader,
Expand Down Expand Up @@ -266,7 +266,7 @@ class PipelineEditorUi extends React.Component {
const { intl } = this.props;

return (
<EuiPageContentBody
<EuiPageSection
style={{ width: '100%' }}
restrictWidth
data-test-subj={`pipelineEdit pipelineEdit-${this.state.pipeline.id}`}
Expand Down Expand Up @@ -480,7 +480,7 @@ class PipelineEditorUi extends React.Component {
confirmDeletePipeline={this.deletePipeline}
/>
)}
</EuiPageContentBody>
</EuiPageSection>
);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
EuiCallOut,
EuiEmptyPrompt,
EuiLoadingSpinner,
EuiPageContentBody_Deprecated as EuiPageContentBody,
EuiPageSection,
EuiPageHeader,
EuiSpacer,
} from '@elastic/eui';
Expand Down Expand Up @@ -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 (
<EuiPageContentBody data-test-subj="pipelineList">
<EuiPageSection data-test-subj="pipelineList">
<EuiPageHeader
pageTitle={
<FormattedMessage id="xpack.logstash.pipelineList.head" defaultMessage="Pipelines" />
Expand Down Expand Up @@ -329,7 +329,7 @@ class PipelineListUi extends React.Component {
showAddRoleAlert={this.state.showAddRoleAlert}
showEnableMonitoringAlert={this.state.showEnableMonitoringAlert}
/>
</EuiPageContentBody>
</EuiPageSection>
);
}
}
Expand Down