Frontend: Fixed the null error in tooltips

This commit is contained in:
Natty 2023-11-09 17:17:46 +01:00
parent 10256c683c
commit d1ca62a807
Signed by: natty
GPG Key ID: BF6CB659ADEE60EC
1 changed files with 1 additions and 1 deletions

View File

@ -118,6 +118,6 @@ export default {
unmounted(el, binding, vn) {
const self = el._tooltipDirective_;
window.clearInterval(self.checkTimer);
self.close();
if (self) self.close();
},
} as Directive;