Skip to content
Snippets Groups Projects
Commit 2745617a authored by Victor Löfgren's avatar Victor Löfgren
Browse files

Fix problem with multiple and single choice questions

parent 79c56883
No related branches found
No related tags found
No related merge requests found
Pipeline #48185 passed with warnings
......@@ -53,7 +53,7 @@ const AnswerMultiple = ({ variant, activeSlide, competitionId }: AnswerMultipleP
}
const url = `/api/competitions/${competitionId}/teams/${teamId}/answers/${alternative.id}`
const payload = {
answer: checked ? 1 : 0,
answer: checked ? '1' : '0',
}
await axios
.put(url, payload)
......
......@@ -58,12 +58,12 @@ const AnswerSingle = ({ variant, activeSlide, competitionId }: AnswerSingleProps
const alternatives = activeSlide.questions[0].alternatives
for (const alt of alternatives) {
const url = `/api/competitions/${competitionId}/teams/${teamId}/answers/${alt.id}`
await axios.put(url, { answer: 0 })
await axios.put(url, { answer: '0' })
}
// Update selected alternative
const url = `/api/competitions/${competitionId}/teams/${teamId}/answers/${alternative.id}`
await axios
.put(url, { answer: 1 })
.put(url, { answer: '1' })
.then(() => {
if (variant === 'editor') {
dispatch(getEditorCompetition(competitionId))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment