File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
packages/react-core/src/components/Page Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import styles from '@patternfly/react-styles/css/components/Page/page';
33import { css } from '@patternfly/react-styles' ;
44import globalBreakpointXl from '@patternfly/react-tokens/dist/esm/t_global_breakpoint_xl' ;
55import { debounce , canUseDOM } from '../../helpers/util' ;
6- import { Drawer , DrawerContent , DrawerContentBody , DrawerPanelContent } from '../Drawer' ;
6+ import { Drawer , DrawerContent , DrawerPanelContent } from '../Drawer' ;
77import { PageBreadcrumb , PageBreadcrumbProps } from './PageBreadcrumb' ;
88import { PageGroup , PageGroupProps } from './PageGroup' ;
99import { getResizeObserver } from '../../helpers/resizeObserver' ;
@@ -345,9 +345,7 @@ class Page extends React.Component<PageProps, PageState> {
345345 { notificationDrawer && (
346346 < div className = { css ( styles . pageDrawer ) } >
347347 < Drawer isExpanded = { isNotificationDrawerExpanded } onExpand = { ( event ) => onNotificationDrawerExpand ( event ) } >
348- < DrawerContent panelContent = { panelContent } >
349- < DrawerContentBody > { main } </ DrawerContentBody >
350- </ DrawerContent >
348+ < DrawerContent panelContent = { panelContent } > { main } </ DrawerContent >
351349 </ Drawer >
352350 </ div >
353351 ) }
You can’t perform that action at this time.
0 commit comments