From 8389f7c0541d82f06f69a1e3ab43e32110863c00 Mon Sep 17 00:00:00 2001 From: NihadBadalov <32594553+NihadBadalov@users.noreply.github.com> Date: Thu, 15 Feb 2024 09:10:29 +0100 Subject: [PATCH] Fix: Correct mobile checking --- src/pages/List.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/List.vue b/src/pages/List.vue index c24542eb7..0cb81e262 100644 --- a/src/pages/List.vue +++ b/src/pages/List.vue @@ -13,7 +13,7 @@ export default { MonitorList, }, async mounted() { - if (!mobile.computed.isMobile()) { + if (!this.$root.isMobile) { this.$router.push("/dashboard"); } },