#6911 save on enter #207

Merged
jsegarra merged 50 commits from 6911-saveOnEnter into dev 2024-06-07 07:20:48 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 2eead3a69e - Show all commits

View File

@ -22,7 +22,7 @@ export default {
}
const that = this;
document.addEventListener('keyup', function (evt) {
if (evt.keyCode === 13) {
if (evt.key === 'ENTER') {
that.onSubmit();
}
});