Skip to content

Commit d545686

Browse files
authored
fix(ui): Fix regression on Shift-Backspace not being handled (#454)
This keystroke is valid and means "delete to the right" on MacOS.
1 parent c9068af commit d545686

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ui/src/keyboardMappings.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ export const keyDisplayMap: Record<string, string> = {
243243
Escape: "esc",
244244
Tab: "tab",
245245
Backspace: "backspace",
246+
"(Backspace)": "backspace",
246247
Enter: "enter",
247248
CapsLock: "caps lock",
248249
ShiftLeft: "shift",

0 commit comments

Comments
 (0)