This commit is contained in:
NihadBadalov 2024-10-22 08:49:03 +00:00 committed by GitHub
commit a6ddd5f993
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,6 +19,16 @@ export default {
onResize() {
this.windowWidth = window.innerWidth;
this.updateBody();
if (this.$router.currentRoute.value.path === "/dashboard"
|| this.$router.currentRoute.value.path === "/list") {
this.$router.push({
path: this.isMobile
? "/list"
: "/dashboard",
query: this.$router.currentRoute.value?.query,
});
}
},
/**