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

This commit is contained in:
Sivin Varghese
2022-11-23 00:18:15 +05:30
committed by GitHub
parent db37bfea06
commit b765e17457

View File

@@ -102,7 +102,7 @@ export default {
},
methods: {
handleResize() {
if (window.innerWidth > 1200) {
if (window.innerWidth >= 1200) {
this.isOnDesktop = true;
} else {
this.isOnDesktop = false;