Skip to content

Commit

Permalink
Fix: Default tooltip zIndex
Browse files Browse the repository at this point in the history
  • Loading branch information
higorcavalcanti committed Jun 16, 2023
1 parent 6d9e987 commit e2f0d05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/app/components/api/tooltipoptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export interface TooltipOptions {
tooltipStyleClass?: string;
/**
* Whether the z-index should be managed automatically to always go on top or have a fixed value.
* @defaultValue auto
*/
tooltipZIndex?: string;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/tooltip/tooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class Tooltip implements AfterViewInit, OnDestroy {
appendTo: 'body',
positionStyle: null,
tooltipStyleClass: null,
tooltipZIndex: null,
tooltipZIndex: 'auto',
escape: true,
disabled: null,
showDelay: null,
Expand Down

0 comments on commit e2f0d05

Please sign in to comment.