Skip to content

Commit 62c06e2

Browse files
committed
fix(tooltip-target): hide tooltip if already shown
1 parent f90b5de commit 62c06e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/directives/tooltip/tooltip-target.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ export class IgxTooltipTargetDirective extends IgxToggleActionDirective implemen
411411
* @hidden
412412
*/
413413
public onHide() : void {
414-
if (this.tooltipDisabled) {
414+
if (this.tooltipDisabled || this.target.collapsed) {
415415
return;
416416
}
417417

0 commit comments

Comments
 (0)