mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
fix lint
This commit is contained in:
parent
e2ce0e38a6
commit
72849de1b4
4 changed files with 16 additions and 18 deletions
|
@ -74,7 +74,7 @@ export default {
|
||||||
* Clean up modal and restore scroll behavior
|
* Clean up modal and restore scroll behavior
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
cleanupModal() {
|
cleanupModal() {
|
||||||
if (this.modal) {
|
if (this.modal) {
|
||||||
try {
|
try {
|
||||||
this.modal.hide();
|
this.modal.hide();
|
||||||
|
@ -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 = "";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -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);
|
||||||
},
|
},
|
||||||
|
@ -352,7 +350,7 @@ export default {
|
||||||
* Clean up modal and restore scroll behavior
|
* Clean up modal and restore scroll behavior
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
cleanupModal() {
|
cleanupModal() {
|
||||||
if (this.modal) {
|
if (this.modal) {
|
||||||
try {
|
try {
|
||||||
this.modal.hide();
|
this.modal.hide();
|
||||||
|
@ -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 = "";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -229,7 +229,7 @@ export default {
|
||||||
* Clean up modal and restore scroll behavior
|
* Clean up modal and restore scroll behavior
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
cleanupModal() {
|
cleanupModal() {
|
||||||
if (this.modal) {
|
if (this.modal) {
|
||||||
try {
|
try {
|
||||||
this.modal.hide();
|
this.modal.hide();
|
||||||
|
@ -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 = "";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -478,7 +478,7 @@ export default {
|
||||||
* Clean up modal and restore scroll behavior
|
* Clean up modal and restore scroll behavior
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
cleanupModal() {
|
cleanupModal() {
|
||||||
if (this.modal) {
|
if (this.modal) {
|
||||||
try {
|
try {
|
||||||
this.modal.hide();
|
this.modal.hide();
|
||||||
|
@ -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 = "";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue