#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 7ae05a3e52 - Show all commits

View File

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