fix(quizzes): enable enter key to submit quiz creation

Signed-off-by: royalpinto007 <royalpinto007@gmail.com>
This commit is contained in:
royalpinto007
2025-12-14 15:28:29 +05:30
parent 80deed2be7
commit f2846da4ad

View File

@@ -112,7 +112,7 @@
}"
>
<template #body-content>
<FormControl v-model="title" :label="__('Title')" type="text" />
<FormControl v-model="title" :label="__('Title')" type="text" @keydown.enter="insertQuiz(() => showForm = false)" />
</template>
</Dialog>
</template>