This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit ffc93be6aeb8ba8ca05fe73e2ad368d0e2adeaed Author: Kevin Morin <morin@codelutin.com> Date: Thu Aug 3 15:56:49 2017 +0200 fixes #102 Les champs de vote doivent être obligatoire. --- pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html index 29e86fba..73234456 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html @@ -17,6 +17,7 @@ require("../components/HumanInput.tag.html"); type="text" ref="voterName" name="voterName" + required placeholder={__.authorPlaceHolder} value={poll.voterName}> </div> @@ -39,6 +40,7 @@ require("../components/HumanInput.tag.html"); <input if={!pollTypeCheckbox} class="text c-field {c-field--error: !voteInEdition && error && (error['vote.voteValue#' + choice.id] || error['vote.totalVoteValue'])}" type="number" + required min="{poll.voteCountingTypeValue && poll.voteCountingTypeValue.minimumValue}" max="{poll.voteCountingTypeValue && poll.voteCountingTypeValue.maximumValue}" onchange="{onVoteChanged}" -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.