diff --git a/kolibri/core/assets/src/constants.js b/kolibri/core/assets/src/constants.js index 0724341583e..18538e610dc 100644 --- a/kolibri/core/assets/src/constants.js +++ b/kolibri/core/assets/src/constants.js @@ -198,3 +198,5 @@ export const Presets = Object.freeze({ // This should be kept in sync with the value in // kolibri/core/exams/constants.py export const MAX_QUESTIONS_PER_QUIZ_SECTION = 50; +// this is not used for the actual exam model +export const MAX_QUESTION_OPTIONS_PER_QUIZ_SECTION = 500; diff --git a/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue b/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue index 1c1bddd34b2..c978a11ddf9 100644 --- a/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue +++ b/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue @@ -1,9 +1,6 @@