We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1330565 commit 74cee23Copy full SHA for 74cee23
packages/components/src/components/tooltip/component.tsx
@@ -55,6 +55,7 @@ export class KolTooltipWc implements TooltipAPI {
55
56
private showTooltipTimeout?: ReturnType<typeof setTimeout>;
57
private showTooltipWithDelay = (): void => {
58
+ clearTimeout(this.hideTooltipTimeout); // Cancel scheduled closings on re-enter
59
clearTimeout(this.showTooltipTimeout);
60
this.showTooltipTimeout = setTimeout(() => {
61
this.showTooltip();
0 commit comments