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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;