fix: Sidebar missing at 1200px width (#5917)

This commit is contained in:
Sivin Varghese
2022-11-22 10:48:15 -08:00
committed by GitHub
parent db37bfea06
commit b765e17457
@@ -102,7 +102,7 @@ export default {
},
methods: {
handleResize() {
if (window.innerWidth > 1200) {
if (window.innerWidth >= 1200) {
this.isOnDesktop = true;
} else {
this.isOnDesktop = false;