This is an automated email from the git hooks/post-receive script. New commit to branch ramonville in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit e3e097f1381b57ce9725806073893ac01fd04a2b Author: jcouteau <couteau@codelutin.com> Date: Mon Dec 17 10:22:22 2018 +0100 Fix missing '{' in js --- pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 9e7a2119..531bfdc6 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 @@ -53,7 +53,7 @@ import "../components/time-picker.tag.html"; </button> <div if="{originalFile}" class="original-file {opts.choice.choiceType === 'RESOURCE' ? 'selected' : 'hidden'}"> - <img src="{resourceService.getPreviewUrl(originalFile)}" alt="_t.originalFilePreview"/> + <img src="{resourceService.getPreviewUrl(originalFile)}" alt="{_t.originalFilePreview}"/> <span> {originalFile.name} <i class="fa fa-remove" aria-hidden="true" @@ -63,7 +63,7 @@ import "../components/time-picker.tag.html"; </div> <div if="{!originalFile}" class="add-file {opts.choice.choiceType === 'RESOURCE' ? 'selected' : 'hidden'}"> - <img if={newFile && newFile.image} ref="imagePreview" alt="_t.imagePreview"/> + <img if={newFile && newFile.image} ref="imagePreview" alt="{_t.imagePreview}"/> <div> <span if={!opts.disabled && !newFile} onclick="{addFile}"> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.