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 5c96d6a131b4c7cc39eef94d5695f0b88430696c Author: Léo Kaufmann <kaufmann@codelutin.com> Date: Thu Dec 2 12:00:26 2021 +0100 ref #365 - Fix wrong values displayed for add choices begin and end date --- pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html index 7e5d10e0..d424125c 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html @@ -89,7 +89,7 @@ <p>{_t.dateAddChoices}</p> <p> {poll.endChoiceDate || poll.endDate ? _t.dateFrom : _t.dateFromNoEnd} - <span class="brand">{formatDate(poll.beginChoiceDate ? poll.beginChoiceDate : poll.beginDate)}</span> + <span class="brand">{formatDate(poll.questions[0].beginChoiceDate ? poll.questions[0].beginChoiceDate : poll.beginDate)}</span> </p> <p if={poll.questions[0].endChoiceDate || poll.endDate}> {_t.dateTo} -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.