diff --git a/projects/core/directives/hint/hint-hover.directive.ts b/projects/core/directives/hint/hint-hover.directive.ts index 7700d1230799..06c2b03b0df1 100644 --- a/projects/core/directives/hint/hint-hover.directive.ts +++ b/projects/core/directives/hint/hint-hover.directive.ts @@ -34,8 +34,8 @@ export class TuiHintHoverDirective extends TuiDriver { map( value => value && - (!tuiIsObscured(this.el.nativeElement) || - this.el.nativeElement.hasAttribute('tuiHintPointer')), + (this.el.nativeElement.hasAttribute('tuiHintPointer') || + !tuiIsObscured(this.el.nativeElement)), ), tap(visible => { this.visible = visible;