This is an automated email from the git hooks/post-receive script. New commit to branch feature/bug-on-save in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit a70e5b4af7cf62f7017f602434b46e49b47522a8 Author: dcosse <cosse@codelutin.com> Date: Tue Oct 8 09:16:43 2019 +0200 refs #248 fix call unexisting function getConfig() --- pollen-ui-riot-js/src/main/web/js/PollForm.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pollen-ui-riot-js/src/main/web/js/PollForm.js b/pollen-ui-riot-js/src/main/web/js/PollForm.js index 08e37033..a3a747d9 100644 --- a/pollen-ui-riot-js/src/main/web/js/PollForm.js +++ b/pollen-ui-riot-js/src/main/web/js/PollForm.js @@ -239,7 +239,8 @@ class PollForm { this.pageTracker.trackCreatePoll(this.step); this.maxStepReached = this.step; } - if (this.creation && this.step === 3) { + // step 2 = Option, user can choise how to expose the vote + if (this.creation && this.step === 2) { voterListService.addMeIfEmpty(); } } -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.