This is an automated email from the git hooks/post-receive script. New commit to branch feature/multi-ui in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 7a9cfceb3e60a68903dfc4e269e17a1c94e42e94 Author: jcouteau <couteau@codelutin.com> Date: Wed Aug 21 15:39:25 2019 +0200 Lint --- pollen-ui-riot-js/src/main/web/js/PollForm.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 73490eda..3a09260a 100644 --- a/pollen-ui-riot-js/src/main/web/js/PollForm.js +++ b/pollen-ui-riot-js/src/main/web/js/PollForm.js @@ -67,11 +67,11 @@ class PollForm { } getSteps(multi) { - let steps = undefined; + let steps; if (multi) { - steps = Object.assign([],this.stepsMulti); + steps = Object.assign([], this.stepsMulti); } else { - steps = Object.assign([],this.stepsNoMulti); + steps = Object.assign([], this.stepsNoMulti); } if (this.model.pollType === "RESTRICTED" && !steps.includes("voters")) { steps.push("voters"); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.