diff --git a/aio/src/app/app.component.ts b/aio/src/app/app.component.ts index 47845f4184..d7d37cf0d6 100644 --- a/aio/src/app/app.component.ts +++ b/aio/src/app/app.component.ts @@ -234,7 +234,7 @@ export class AppComponent implements OnInit { @HostListener('window:resize', ['$event.target.innerWidth']) onResize(width: number) { - this.isSideBySide = width > this.sideBySideWidth; + this.isSideBySide = width >= this.sideBySideWidth; this.showFloatingToc.next(width > this.showFloatingTocWidth); if (this.isSideBySide && !this.isSideNavDoc) {