Skip to content

Commit

Permalink
fix: primefaces#6680, Tooltip: Escape key not dismissing tooltip (WCA…
Browse files Browse the repository at this point in the history
…G 2.1 1.4.13)
  • Loading branch information
ANTONA09 committed May 27, 2024
1 parent 7e5694f commit 17317d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/lib/hooks/useGlobalOnEscapeKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { DomHandler } from '../utils/Utils';
* Priorities of different components (bigger number handled first)
*/
export const ESC_KEY_HANDLING_PRIORITIES = {
TOOLTIP: 10,
SIDEBAR: 100,
SLIDE_MENU: 200,
DIALOG: 300,
Expand All @@ -15,7 +14,8 @@ export const ESC_KEY_HANDLING_PRIORITIES = {
PASSWORD: 700,
CASCADE_SELECT: 800,
SPLIT_BUTTON: 900,
SPEED_DIAL: 1000
SPEED_DIAL: 1000,
TOOLTIP: 1200,
};

/**
Expand Down

0 comments on commit 17317d6

Please sign in to comment.