Skip to content

Commit 662c152

Browse files
committed
add left/right arrow key navigation in fixer view
1 parent b19bc17 commit 662c152

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,8 @@ function AppContent() {
292292
store.ui.layerAnalysisStatus === "complete" &&
293293
store.ui.layerAnalysisResults
294294
) {
295-
// Tab to toggle focus between services and candidates panels
296-
if (key.name === "tab") {
295+
// Tab or left/right arrows to toggle focus between services and candidates panels
296+
if (key.name === "tab" || key.name === "left" || key.name === "right") {
297297
actions.toggleFixTabFocus();
298298
return;
299299
}

0 commit comments

Comments
 (0)