2
0

fix(results): 🛂 Make sure booleans are parsed in table

This commit is contained in:
Baptiste Arnaud
2022-03-29 11:37:36 +02:00
parent bb194b1dbb
commit f7d12dc995

View File

@ -110,7 +110,7 @@ export const parseAnswers =
if (!key) return o if (!key) return o
return { return {
...o, ...o,
[key]: answer.content, [key]: answer.content.toString(),
} }
} }
const variable = answerOrVariable as VariableWithValue const variable = answerOrVariable as VariableWithValue