diff --git a/web/src/utils.js b/web/src/utils.js index fe1d82cce..247133351 100644 --- a/web/src/utils.js +++ b/web/src/utils.js @@ -240,7 +240,7 @@ export function debounce(callback, wait = 100) { if (!timeout) { timeout = setTimeout(() => { timeout = null; - callback(arguments_); + callback(...arguments_); }, wait); } };