mirror of https://github.com/jetkvm/kvm.git
fix(ui): Fix regression on Shift-Backspace not being handled (#454)
This keystroke is valid and means "delete to the right" on MacOS.
This commit is contained in:
parent
c9068af568
commit
d54568642b
|
@ -243,6 +243,7 @@ export const keyDisplayMap: Record<string, string> = {
|
||||||
Escape: "esc",
|
Escape: "esc",
|
||||||
Tab: "tab",
|
Tab: "tab",
|
||||||
Backspace: "backspace",
|
Backspace: "backspace",
|
||||||
|
"(Backspace)": "backspace",
|
||||||
Enter: "enter",
|
Enter: "enter",
|
||||||
CapsLock: "caps lock",
|
CapsLock: "caps lock",
|
||||||
ShiftLeft: "shift",
|
ShiftLeft: "shift",
|
||||||
|
|
Loading…
Reference in New Issue