Skip to content

Commit

Permalink
fix(tooltip): enter and leave delay values reverted to default
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeethababu9223 committed Jan 1, 2024
1 parent 8809a1f commit 0327ba6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ class CDSTooltip extends HostListenerMixin(CDSPopover) {
* Specify the duration in milliseconds to delay before displaying the tooltip
*/
@property({ attribute: 'enter-delay-ms', type: Number })
enterDelayMs = 500;
enterDelayMs = 100;

/**
* Specify the duration in milliseconds to delay before hiding the tooltip
*/
@property({ attribute: 'leave-delay-ms', type: Number })
leaveDelayMs = 100;
leaveDelayMs = 300;

/**
* Specify the size of the tooltip
Expand Down

0 comments on commit 0327ba6

Please sign in to comment.