X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FHall.vue;h=61e809e1fc753a94474b6a8b4abf77e1b6212a27;hb=6d3f6a3064c3c8732e1d4ddf00fd9bf1020ef1d0;hp=c8ca3e6d3863c1bc700d698e9ca489c72a6b7df0;hpb=2a2936023cda0888e215ff699d420090372899b0;p=vchess.git diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index c8ca3e6d..61e809e1 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -507,7 +507,7 @@ export default { }, invColor: function(c) { if (c == 'w') return this.st.tr["Black"]; - return this.tr.tr["White"]; + return this.st.tr["White"]; }, partialResetNewchallenge: function() { // Reset potential target and custom FEN: @@ -1061,6 +1061,7 @@ export default { this.newchallenge.vid = pchall.vid; this.newchallenge.cadence = pchall.cadence; this.newchallenge.options = pchall.options; + this.newchallenge.fromPreset = true; this.loadNewchallVariant(this.issueNewChallenge); }, issueNewChallenge: async function() { @@ -1096,8 +1097,9 @@ export default { return; } window.V = this.newchallenge.V; - let chall = Object.assign({}, this.newchallenge, { options: {} }); - if (V.Options) { + let chall = Object.assign({}, this.newchallenge); + if (!this.newchallenge.options) chall.options = { options: {} }; + if (V.Options && !this.newchallenge.fromPreset) { // 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");