From ac8490eb952400b6af2639ad22a86017d8422efa Mon Sep 17 00:00:00 2001 From: Alexander Friedland Date: Thu, 27 Oct 2022 08:56:43 +0200 Subject: [PATCH] Update webapp/layouts/default.vue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Wolfgang Huß --- webapp/layouts/default.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/layouts/default.vue b/webapp/layouts/default.vue index 3d0e8ba02..c8cc97afa 100644 --- a/webapp/layouts/default.vue +++ b/webapp/layouts/default.vue @@ -38,7 +38,7 @@ export default { computed: { showMobileMenu() { if (!this.windowWidth) return false - return this.windowWidth < this.maxMobileWidth + return this.windowWidth <= this.maxMobileWidth }, }, mounted() {