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
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ export const ManagementApp = ({
// @ts-expect-error Techincally `paddingSize` isn't supported but it is passed through,
// this is a stop-gap for Stack managmement specifically until page components can be converted to template components
mainProps={{ paddingSize: 'l' }}
panelled
>
<ManagementRouter
history={history}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,13 @@ export const ElasticsearchIndexingApi = () => {
const showNoIndices = !isLoading && data?.indices?.length === 0 && indexSearchQuery === undefined;

return (
<EuiPageTemplate offset={0} grow restrictWidth data-test-subj="svlSearchIndexingApiPage">
<EuiPageTemplate
offset={0}
grow
restrictWidth
data-test-subj="svlSearchIndexingApiPage"
panelled
>
<EuiPageTemplate.Header
pageTitle={i18n.translate('xpack.serverlessSearch.content.indexingApi.header.title', {
defaultMessage: 'Indexing API',
Expand Down