Skip to content

Commit 8698ff3

Browse files
Smoke Testing Grid Layout Changes (#242451)
Part of [issue](#242449) ## Summary Smoke testing core owned UI components to ensure the new grid layout changes look good and not breaking anything. Making updates to core UI components as part of identifying suspicious code patterns in this [doc](https://docs.google.com/document/d/1nQc-yfwE3ckbHzK9KQTuOzM5RxNYtAGIqtrOZvzKXKA/edit?tab=t.35ez0kdwk5e4).
1 parent a9a4cd0 commit 8698ff3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/packages/application/browser-internal/src/ui/app_not_found_screen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import React from 'react';
1212
import { FormattedMessage } from '@kbn/i18n-react';
1313

1414
export const AppNotFound = () => (
15-
<EuiPageTemplate data-test-subj="appNotFoundPageContent">
15+
<EuiPageTemplate grow={false} data-test-subj="appNotFoundPageContent">
1616
<EuiPageTemplate.EmptyPrompt
1717
iconType="warning"
1818
iconColor="danger"

src/core/packages/apps/browser-internal/src/errors/error_application.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const ErrorPage: React.FC<Props> = ({ title, children }) => {
3333
});
3434

3535
return (
36-
<EuiPageTemplate data-test-subj="appRenderErrorPageContent">
36+
<EuiPageTemplate grow={false} data-test-subj="appRenderErrorPageContent">
3737
<EuiPageTemplate.EmptyPrompt
3838
iconType="warning"
3939
iconColor="danger"

0 commit comments

Comments
 (0)