replace DomRect = null with new DomRect() in vTooltip

This commit is contained in:
geoffrey45
2022-09-21 16:56:11 +03:00
committed by Mungai Njoroge
parent 09453fc419
commit 8fe99a9b44
+1 -1
View File
@@ -7,7 +7,7 @@ let store: any;
// @ts-ignore
const virtualEl = {
getBoundingClientRect: () => null,
getBoundingClientRect: () => new DOMRect(),
} as VirtualElement;
const getTooltip = () => document.getElementById("tooltip") as HTMLElement;