fix: Mise à jour de la donnée en lancant l'évènement change
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -47,9 +47,11 @@ function validatePopup() {
|
||||
return true;
|
||||
}
|
||||
});
|
||||
document.querySelector(
|
||||
const answer = document.querySelector(
|
||||
"input[id=" + `question_${props.question.id}_answer_${answerIndex.id}` + "]"
|
||||
).checked = true;
|
||||
)
|
||||
answer.checked = true;
|
||||
answer.dispatchEvent(new Event("change"));
|
||||
showHidePopup();
|
||||
}
|
||||
const h = ref();
|
||||
|
Reference in New Issue
Block a user