X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FHall.vue;fp=client%2Fsrc%2Fviews%2FHall.vue;h=c8ca3e6d3863c1bc700d698e9ca489c72a6b7df0;hp=bdb280509ff9a7a991a09f6e201cfba9d5ac0e25;hb=2a2936023cda0888e215ff699d420090372899b0;hpb=5c27a4b518693204ee33f85b50cb2cd518d38941 diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index bdb28050..c8ca3e6d 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -1097,16 +1097,18 @@ export default { } window.V = this.newchallenge.V; let chall = Object.assign({}, this.newchallenge, { options: {} }); - // Get/set options variables (if any) / TODO: v-model?! - for (const check of this.newchallenge.V.Options.check || []) { - const elt = document.getElementById(check.variable + "_opt"); - chall.options[check.variable] = elt.checked; - } - for (const select of this.newchallenge.V.Options.select || []) { - const elt = document.getElementById(select.variable + "_opt"); - const tryIntVal = parseInt(elt.value, 10); - chall.options[select.variable] = - (isNaN(tryIntVal) ? elt.value : tryIntVal); + if (V.Options) { + // Get/set options variables (if any) / TODO: v-model?! + for (const check of this.newchallenge.V.Options.check || []) { + const elt = document.getElementById(check.variable + "_opt"); + chall.options[check.variable] = elt.checked; + } + for (const select of this.newchallenge.V.Options.select || []) { + const elt = document.getElementById(select.variable + "_opt"); + const tryIntVal = parseInt(elt.value, 10); + chall.options[select.variable] = + (isNaN(tryIntVal) ? elt.value : tryIntVal); + } } error = checkChallenge(chall); if (error) {