Fix clear input on action

This commit is contained in:
Oleg Korshul
2025-07-18 09:53:44 +03:00
parent 287ed109e7
commit 3b6b9d5e1a

View File

@ -43,7 +43,6 @@
if (event.keyCode === 13 && !event.shiftKey) {
window.Asc.plugin.sendToPlugin("onHelperAction", input.value);
input.value = '';
return;
}
});