Skip to content

Commit 6d9ee18

Browse files
committed
[spalenque] - #14410 * fix free text tags with quote
1 parent 74f9c52 commit 6d9ee18

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

survey_builder/templates/Layout/SangriaPage_ViewSurveyFreeAnswersStats.ss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script>
55
var data = {
66
tags: [],
7-
question_title: '{$QuestionTitle}',
7+
question_title: "{$QuestionTitle}",
88
total_answers: {$AnswerCount},
99
template_id: {$TemplateID},
1010
question_id: {$QuestionID}
@@ -13,10 +13,10 @@
1313
<% loop $Data %>
1414
data.tags.push({
1515
id: {$ID},
16-
name: '{$Tag}',
17-
qty: '{$Count}',
16+
name: "{$Tag}",
17+
qty: "{$Count}",
1818
active: true,
19-
answer_ids: '{$AnswerIDs}'.split(',')
19+
answer_ids: "{$AnswerIDs}".split(',')
2020
});
2121
<% end_loop %>
2222

0 commit comments

Comments
 (0)