This is an automated email from the git hooks/post-receive script. New commit to branch hotfix/3.0.1 in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 45e53c9596eee7d884ae28e4df2ed7df61330468 Author: Kevin Morin <morin@codelutin.com> Date: Mon Oct 2 15:10:30 2017 +0200 correction du pattern vide du choix --- pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html index 46a9cacc..f3acb26e 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html @@ -38,7 +38,7 @@ require("../components/time-picker.tag.html"); disabled={opts.disabled} value={valueText} required={opts.choice.choiceType === 'TEXT'} - pattern={opts.choice.choiceType === 'TEXT' ? ".*[^\s]+.*" : ""} + pattern={opts.choice.choiceType === 'TEXT' ? ".*[^\\s]+.*" : ""} maxlength="255" title={__.text_notBlank} onchange={onTextChange}/> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.