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 ed37324d3c8f88ceb93f2499ac33f0fb522517eb Author: Kevin Morin <morin@codelutin.com> Date: Tue Aug 1 18:55:10 2017 +0200 lien disabled ne fonctionne pas, donc verif dans la methode --- .../src/main/web/tag/components/date-time-picker.tag.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/components/date-time-picker.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/date-time-picker.tag.html index 0f02308c..02d240f9 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/date-time-picker.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/date-time-picker.tag.html @@ -64,8 +64,10 @@ require("./time-picker.tag.html"); }; this.reset = () => { - this.date.date = undefined; - this.time.time = undefined; + if (!this.opts.disabled) { + this.date.date = undefined; + this.time.time = undefined; + } }; </script> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.