Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/components/content/IsaacInlineRegion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const useInlineRegionPart = (pageQuestions: AppQuestionDTO[] | undefined)
const defaultFeedback = (correctness: QuestionCorrectness) : ContentDTO => {
const feedbackMap : {[key in QuestionCorrectness]: string} = {
"CORRECT" : "Correct!",
"INCORRECT" : "Check your working.",
"INCORRECT" : "Check your answer.",
"NOT_ANSWERED" : "You did not provide an answer.",
"NOT_SUBMITTED" : "This answer is missing a unit.", // this is a special case for numeric questions, may need to be updated if we add more inline q types
};
Expand Down
Loading