Skip to content

Commit

Permalink
feat: update problem descriptions (openedx#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
KristinAoki authored Apr 18, 2023
1 parent 4f1dc98 commit 8f15480
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/editors/data/constants/problem.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const ProblemTypes = StrictDict({
title: 'Single select',
preview: singleSelect,
previewDescription: 'Learners must select the correct answer from a list of possible options.',
description: 'Enter your single select answers below and select which choice is correct',
description: 'Enter your single select answers below and select which choices are correct. Learners must choose one correct answer.',
helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/multiple_choice.html',
prev: ProblemTypeKeys.TEXTINPUT,
next: ProblemTypeKeys.MULTISELECT,
Expand All @@ -32,7 +32,7 @@ export const ProblemTypes = StrictDict({
title: 'Multi-select',
preview: multiSelect,
previewDescription: 'Learners must select all correct answers from a list of possible options.',
description: 'Enter your multi-select answers below and select which choices are correct',
description: 'Enter your multi select answers below and select which choices are correct. Learners must choose all correct answers.',
helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/checkbox.html',
next: ProblemTypeKeys.DROPDOWN,
prev: ProblemTypeKeys.SINGLESELECT,
Expand All @@ -42,7 +42,7 @@ export const ProblemTypes = StrictDict({
title: 'Dropdown',
preview: dropdown,
previewDescription: 'Learners must select the correct answer from a list of possible options',
description: 'Enter your dropdown answers below and select which choice is correct',
description: 'Enter your dropdown answers below and select which choice is correct. Learners must select one correct answer.',
helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/dropdown.html',
next: ProblemTypeKeys.NUMERIC,
prev: ProblemTypeKeys.MULTISELECT,
Expand All @@ -52,7 +52,7 @@ export const ProblemTypes = StrictDict({
title: 'Numerical input',
preview: numericalInput,
previewDescription: 'Specify one or more correct numeric answers, submitted in a response field.',
description: 'Enter correct numerical input answers below',
description: 'Enter correct numerical input answers below. Learners must enter one correct answer.',
helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/numerical_input.html',
next: ProblemTypeKeys.TEXTINPUT,
prev: ProblemTypeKeys.DROPDOWN,
Expand All @@ -62,7 +62,7 @@ export const ProblemTypes = StrictDict({
title: 'Text input',
preview: textInput,
previewDescription: 'Specify one or more correct text answers, including numbers and special characters, submitted in a response field.',
description: 'Enter your text input answers below and select which choices are correct',
description: 'Enter your text input answers below and select which choices are correct. Learners must enter one correct answer.',
helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/text_input.html',
prev: ProblemTypeKeys.NUMERIC,
next: ProblemTypeKeys.SINGLESELECT,
Expand Down

0 comments on commit 8f15480

Please sign in to comment.