diff --git a/packages/react-core/src/components/Drawer/DrawerPanelContent.tsx b/packages/react-core/src/components/Drawer/DrawerPanelContent.tsx index 7b9b50327dc..3961cc98e36 100644 --- a/packages/react-core/src/components/Drawer/DrawerPanelContent.tsx +++ b/packages/react-core/src/components/Drawer/DrawerPanelContent.tsx @@ -8,8 +8,8 @@ export interface DrawerPanelContentProps extends React.HTMLProps className?: string; /** Content to be rendered in the drawer panel. */ children?: React.ReactNode; - /* Flag indicating that the drawer panel should have a border. */ - hasBorder?: boolean; + /* Flag indicating that the drawer panel should not have a border. */ + hasNoBorder?: boolean; /* Default width for drawer panel */ width?: 25 | 33 | 50 | 66 | 75 | 100; /* Drawer panel width on large viewports */ @@ -23,7 +23,7 @@ export interface DrawerPanelContentProps extends React.HTMLProps export const DrawerPanelContent: React.SFC = ({ className = '', children, - hasBorder = false, + hasNoBorder = false, width, widthOnLg, widthOnXl, @@ -35,7 +35,7 @@ export const DrawerPanelContent: React.SFC = ({