From 17447d76106cdcd3ef16203c486a40e0bd6366db Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 29 Jul 2025 12:48:09 +0200 Subject: [PATCH] :sparkles: Remove restriction of duplicate bindings on mousetrap --- frontend/vendor/mousetrap/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/vendor/mousetrap/index.js b/frontend/vendor/mousetrap/index.js index c1cd8af3d3..06866e6a5b 100644 --- a/frontend/vendor/mousetrap/index.js +++ b/frontend/vendor/mousetrap/index.js @@ -845,8 +845,8 @@ function Mousetrap(targetElement) { // a callback is added for this key self._callbacks[info.key] = self._callbacks[info.key] || []; - // remove an existing match if there is one - _getMatches(info.key, info.modifiers, {type: info.action}, sequenceName, combination, level); + // // remove an existing match if there is one + // _getMatches(info.key, info.modifiers, {type: info.action}, sequenceName, combination, level); // add this call back to the array // if it is a sequence put it at the beginning