components/help: fix typo for Ctrl key bindings
This commit is contained in:
parent
10d988b891
commit
fe016807da
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ function KeyBindingsHelp() {
|
||||||
let l = keybindings.map((binding) => {
|
let l = keybindings.map((binding) => {
|
||||||
let keys = [];
|
let keys = [];
|
||||||
if (binding.ctrlKey) {
|
if (binding.ctrlKey) {
|
||||||
keys.psuh("Ctrl");
|
keys.push("Ctrl");
|
||||||
}
|
}
|
||||||
if (binding.altKey) {
|
if (binding.altKey) {
|
||||||
keys.push("Alt");
|
keys.push("Alt");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue