Merge pull request #1912 from royalpinto007/fix/quiz-enter

fix(quizzes): enable enter key to submit quiz creation
This commit is contained in:
Jannat Patel
2026-01-01 14:28:42 +05:30
committed by GitHub

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>