diff --git a/app/src/components/v-field-template/v-field-template.vue b/app/src/components/v-field-template/v-field-template.vue index 17d9f274e3..efa52e4d20 100644 --- a/app/src/components/v-field-template/v-field-template.vue +++ b/app/src/components/v-field-template/v-field-template.vue @@ -114,6 +114,10 @@ function onClick(event: MouseEvent) { } function onKeyDown(event: KeyboardEvent) { + if (event.key === 'Enter') { + event.preventDefault(); + } + if (event.key === '{' || event.key === '}') { event.preventDefault(); menuActive.value = true; @@ -287,7 +291,7 @@ function setContent() { } -