mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix main window tab navigation accessibility issue:
1) Dashboard -> Server Activity grid: terminate the session, cancel active button not navigable using tab key. 2) SQL -> If the focus inside code mirror control tab navigation not working. Fixes #4930
This commit is contained in:
committed by
Akshay Joshi
parent
6a5d98cf19
commit
397a1b9616
@@ -134,7 +134,7 @@ _.extend(pgBrowser.keyboardNavigation, {
|
||||
bindRightPanel: function(event, combo) {
|
||||
let allPanels = pgAdmin.Browser.docker.findPanels();
|
||||
let activePanel = 0;
|
||||
let nextPanel = allPanels.length;
|
||||
let nextPanel = allPanels.length - 1;
|
||||
let prevPanel = 1;
|
||||
let activePanelId = 0;
|
||||
let activePanelFlag = false;
|
||||
|
||||
Reference in New Issue
Block a user