fix
This commit is contained in:
parent
350b28cb6b
commit
d66cff65df
@ -155,10 +155,10 @@ const SettingTextField = memo<SettingTextFieldProps>(function ({ questionId, isR
|
|||||||
alignItems: isMobile ? "flex-end" : "center",
|
alignItems: isMobile ? "flex-end" : "center",
|
||||||
}}
|
}}
|
||||||
label={"Многострочный ответ"}
|
label={"Многострочный ответ"}
|
||||||
checked={!multi}
|
checked={multi}
|
||||||
handleChange={(e) => {
|
handleChange={(e) => {
|
||||||
updateQuestion<QuizQuestionText>(questionId, (question) => {
|
updateQuestion<QuizQuestionText>(questionId, (question) => {
|
||||||
question.content.multi = !e.target.checked;
|
question.content.multi = e.target.checked;
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user