Fix lexical declaration in a case clause
This commit is contained in:
parent
f4561874f9
commit
58089a937d
1 changed files with 2 additions and 1 deletions
|
@ -523,12 +523,13 @@ Logic.registerPanel(P_CONTAINERS_LIST, {
|
|||
case 38:
|
||||
previous();
|
||||
break;
|
||||
case 39:
|
||||
case 39: {
|
||||
const showTabs = element.parentNode.querySelector(".show-tabs");
|
||||
if (showTabs) {
|
||||
showTabs.click();
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
if ((e.keyCode >= 49 && e.keyCode <= 57) &&
|
||||
Logic._currentPanel === "containersList") {
|
||||
|
|
Loading…
Add table
Reference in a new issue