This commit is contained in:
mohit-nagaraj 2024-10-08 08:43:30 +05:30
parent e2ce0e38a6
commit 72849de1b4
No known key found for this signature in database
4 changed files with 16 additions and 18 deletions

View file

@ -82,9 +82,9 @@ export default {
console.warn("Modal hide failed:", e); console.warn("Modal hide failed:", e);
} }
} }
document.body.classList.remove('modal-open'); document.body.classList.remove("modal-open");
document.body.style.paddingRight = ''; document.body.style.paddingRight = "";
document.body.style.overflow = ''; document.body.style.overflow = "";
} }
}, },
}; };

View file

@ -226,12 +226,10 @@ export default {
this.notification.name = this.getUniqueDefaultName(to); this.notification.name = this.getUniqueDefaultName(to);
} }
}, },
watch: {
$route(to, from) { $route(to, from) {
this.cleanupModal(); this.cleanupModal();
} }
}, },
},
mounted() { mounted() {
this.modal = new Modal(this.$refs.modal); this.modal = new Modal(this.$refs.modal);
}, },
@ -360,9 +358,9 @@ export default {
console.warn("Modal hide failed:", e); console.warn("Modal hide failed:", e);
} }
} }
document.body.classList.remove('modal-open'); document.body.classList.remove("modal-open");
document.body.style.paddingRight = ''; document.body.style.paddingRight = "";
document.body.style.overflow = ''; document.body.style.overflow = "";
} }
}, },
}; };

View file

@ -237,9 +237,9 @@ export default {
console.warn("Modal hide failed:", e); console.warn("Modal hide failed:", e);
} }
} }
document.body.classList.remove('modal-open'); document.body.classList.remove("modal-open");
document.body.style.paddingRight = ''; document.body.style.paddingRight = "";
document.body.style.overflow = ''; document.body.style.overflow = "";
} }
}, },
}; };

View file

@ -486,9 +486,9 @@ export default {
console.warn("Modal hide failed:", e); console.warn("Modal hide failed:", e);
} }
} }
document.body.classList.remove('modal-open'); document.body.classList.remove("modal-open");
document.body.style.paddingRight = ''; document.body.style.paddingRight = "";
document.body.style.overflow = ''; document.body.style.overflow = "";
} }
}, },
}; };