fix: replace key value
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Javier Segarra 2024-05-09 15:48:51 +00:00
parent 8128e22645
commit a15530dba2
1 changed files with 1 additions and 1 deletions

View File

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