diff --git a/client/src/components/Common/Tooltip.vue b/client/src/components/Common/Tooltip.vue index 7f865f4..b80daf9 100644 --- a/client/src/components/Common/Tooltip.vue +++ b/client/src/components/Common/Tooltip.vue @@ -85,6 +85,11 @@ export default { this.top = event.clientY if (!this.directionChecked) { + // Component has been destroyed + if (!this.$refs.content || !this.$refs.trigger) { + return + } + await this.$nextTick() this.checkTooltipVisibility() }