Skip to content

Commit 487be6e

Browse files
committed
[IMP] web: add more keys to whitelisted hotkeys
This commit adds support for the "." and "?" keyboard shortcuts in the call debrief field. task-6119464
1 parent 43ee7a1 commit 487be6e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

addons/web/static/src/core/hotkeys/hotkey_service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const NAV_KEYS = [
4949
];
5050
const F_KEYS = range(1, 13).map((n) => `f${n}`);
5151
const MODIFIERS = ["alt", "control", "shift"];
52-
const AUTHORIZED_KEYS = [...ALPHANUM_KEYS, ...NAV_KEYS, ...F_KEYS, "escape", "<", ">"];
52+
const AUTHORIZED_KEYS = [...ALPHANUM_KEYS, ...NAV_KEYS, ...F_KEYS, "escape", "<", ">", ".", "?"];
5353

5454
/**
5555
* Get the actual hotkey being pressed.

0 commit comments

Comments
 (0)