We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b19bc17 commit 662c152Copy full SHA for 662c152
1 file changed
src/index.tsx
@@ -292,8 +292,8 @@ function AppContent() {
292
store.ui.layerAnalysisStatus === "complete" &&
293
store.ui.layerAnalysisResults
294
) {
295
- // Tab to toggle focus between services and candidates panels
296
- if (key.name === "tab") {
+ // Tab or left/right arrows to toggle focus between services and candidates panels
+ if (key.name === "tab" || key.name === "left" || key.name === "right") {
297
actions.toggleFixTabFocus();
298
return;
299
}
0 commit comments