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 dccc39f70cf58bbb437856713e8355dd6290a926 Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Fri May 25 14:25:33 2018 +0200 refs #208 : Jugement majoritaire : ne plus modifer les mention après le premier vote --- .../src/main/web/tag/voteCountingType/MajorityJudgmentConfig.tag.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MajorityJudgmentConfig.tag.html b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MajorityJudgmentConfig.tag.html index 93abc36f..63cc4d1d 100644 --- a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MajorityJudgmentConfig.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MajorityJudgmentConfig.tag.html @@ -41,13 +41,14 @@ <button class="c-button c-button--success" type="button" title={parent._t.addGradAfter} + disabled={parent.opts.disabled} onclick={addGradAfter(index)}> <i class="fa fa-plus" aria-hidden="true"></i> </button> <button class="c-button c-button--error" type="button" title={parent._t.removeGrad} - disabled={parent.opts.config.grades.length <= 3} + disabled={parent.opts.disabled || parent.opts.config.grades.length <= 3} onclick={removeGrad(index)}> <i class="fa fa-trash" aria-hidden="true"></i> </button> @@ -55,6 +56,7 @@ </div> <button class="c-button c-button--info default-grades" type="button" + disabled={opts.disabled} onclick={setDefaultGrades}> {_t.grades_default} </button> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.