Display the number of responses for a choice on survey choices.

This commit is contained in:
Pierre HUBERT 2018-08-26 15:10:03 +02:00
parent affe9a96f5
commit f91ffba2a4

View File

@ -684,7 +684,7 @@ ComunicWeb.components.posts.ui = {
createElem2({ createElem2({
appendTo: lengendLi, appendTo: lengendLi,
type: "span", type: "span",
innerHTML: " "+surveyData[i].label innerHTML: " " + (surveyData[i].value > 0 ? "("+surveyData[i].value+") " : "") + surveyData[i].label
}); });
} }