Skip to content

Commit

Permalink
fix(Tooltip): Add default value for closeOnClick
Browse files Browse the repository at this point in the history
  • Loading branch information
russi-sinha committed Sep 9, 2024
1 parent 1650029 commit 73df51e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class TooltipDirective implements OnDestroy, OnInit {
@Input('tooltipIsHTML')
isHTML: boolean;
@Input('tooltipCloseOnClick')
closeOnClick: boolean;
closeOnClick: boolean = false;

private tooltipInstance: NovoTooltip | null;
private portal: ComponentPortal<NovoTooltip>;
Expand Down

0 comments on commit 73df51e

Please sign in to comment.