Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ExampleVisualization')
-rw-r--r--plugins/ExampleVisualization/templates/simpleTable.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExampleVisualization/templates/simpleTable.twig b/plugins/ExampleVisualization/templates/simpleTable.twig
index 6b0748711d..618736cc24 100644
--- a/plugins/ExampleVisualization/templates/simpleTable.twig
+++ b/plugins/ExampleVisualization/templates/simpleTable.twig
@@ -17,7 +17,7 @@
{% for tableRow in dataTable.getRows %}
<tr>
{% for column in properties.columns_to_display %}
- <td>{{ tableRow.getColumn(column)|default('-')|truncate(50)|raw }}</td>
+ <td>{{ tableRow.getColumn(column)|default('-')|truncate(50)|rawSafeDecoded }}</td>
{% endfor %}
</tr>
{% endfor %}