From a15530dba2eb59a327a70d58dfad2256fa75deee Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Thu, 9 May 2024 15:48:51 +0000 Subject: [PATCH] fix: replace key value --- src/boot/qformMixin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/qformMixin.js b/src/boot/qformMixin.js index b0602ab69..52b99af46 100644 --- a/src/boot/qformMixin.js +++ b/src/boot/qformMixin.js @@ -22,7 +22,7 @@ export default { } const that = this; document.addEventListener('keyup', function (evt) { - if (evt.key === 'ENTER') { + if (evt.key === 'Enter') { that.onSubmit(); } });