We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4089491 commit 1ef2e90Copy full SHA for 1ef2e90
packages/react-core/src/components/Page/Page.tsx
@@ -178,7 +178,7 @@ class Page extends Component<PageProps, PageState> {
178
179
isMobile = () =>
180
// eslint-disable-next-line radix
181
- this.getWindowWidth() < Number.parseInt(globalBreakpointXl.value, 10) * 16;
+ this.getWindowWidth() <= Number.parseInt(globalBreakpointXl.value, 10) * 16;
182
183
resize = (_event?: MouseEvent | TouchEvent | React.KeyboardEvent<Element>) => {
184
const { onPageResize } = this.props;
0 commit comments