From ed8d1cde0094902c1e9d2a97cdf0a79bc9a01057 Mon Sep 17 00:00:00 2001 From: Aditya Toshniwal Date: Wed, 15 May 2019 15:38:33 +0530 Subject: [PATCH] Fix accessibility issue for menu navigation. Fixes #4194 --- docs/en_US/release_notes_4_7.rst | 1 + web/pgadmin/browser/static/js/keyboard.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en_US/release_notes_4_7.rst b/docs/en_US/release_notes_4_7.rst index 9756e8bc2..1bc0ce766 100644 --- a/docs/en_US/release_notes_4_7.rst +++ b/docs/en_US/release_notes_4_7.rst @@ -15,6 +15,7 @@ Bug fixes ********* | `Bug #4164 `_ - Fix file browser path issue which occurs when client is on Windows and server is on Mac/Linux. +| `Bug #4194 `_ - Fix accessibility issue for menu navigation. | `Bug #4218 `_ - Properly assign dropdownParent in Select2 controls. | `Bug #4219 `_ - Ensure popper.js is installed when needed. | `Bug #4246 `_ - Fixed console error when subnode control is used in panels. diff --git a/web/pgadmin/browser/static/js/keyboard.js b/web/pgadmin/browser/static/js/keyboard.js index 4d9b6ae72..9ad59b6fb 100644 --- a/web/pgadmin/browser/static/js/keyboard.js +++ b/web/pgadmin/browser/static/js/keyboard.js @@ -13,7 +13,7 @@ import $ from 'jquery'; import Mousetrap from 'mousetrap'; import * as commonUtils from '../../../static/js/utils'; import dialogTabNavigator from '../../../static/js/dialog_tab_navigator'; -import {default as keyboardFunc} from 'sources/keyboard_shortcuts'; +import * as keyboardFunc from 'sources/keyboard_shortcuts'; const pgBrowser = pgAdmin.Browser = pgAdmin.Browser || {};