From fe016807da525e1c8bd29da4ecc1d3071df0ad19 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 8 Jun 2023 12:15:53 +0200 Subject: [PATCH] components/help: fix typo for Ctrl key bindings --- components/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/help.js b/components/help.js index 4ae3ecd..8d89fd0 100644 --- a/components/help.js +++ b/components/help.js @@ -6,7 +6,7 @@ function KeyBindingsHelp() { let l = keybindings.map((binding) => { let keys = []; if (binding.ctrlKey) { - keys.psuh("Ctrl"); + keys.push("Ctrl"); } if (binding.altKey) { keys.push("Alt");