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:
authorThomas Steur <thomas.steur@googlemail.com>2014-03-07 09:31:55 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-03-07 09:31:55 +0400
commitaa404661555b104ca9eddb49084e38f2d2e6ec03 (patch)
tree5bcb4a4218c72f2605340d6b8ef1f809fc49c906 /plugins/Insights
parent0940805b8ef5686fc305d6c37af81798917a579b (diff)
refs #57 fix syntax error
Diffstat (limited to 'plugins/Insights')
-rw-r--r--plugins/Insights/templates/table_row.twig6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Insights/templates/table_row.twig b/plugins/Insights/templates/table_row.twig
index 7d24e7ad6b..bb4e8e9eef 100644
--- a/plugins/Insights/templates/table_row.twig
+++ b/plugins/Insights/templates/table_row.twig
@@ -7,11 +7,11 @@
</td>
{% if row.getColumn('isMover') %}
- {% set typeOfChange = 'Moved'; %}
+ {% set typeOfChange = 'Moved' %}
{% elseif row.getColumn('isNew') %}
- {% set typeOfChange = 'New'; %}
+ {% set typeOfChange = 'New' %}
{% elseif row.getColumn('isDisappeared') %}
- {% set typeOfChange = 'Disappeared'; %}
+ {% set typeOfChange = 'Disappeared' %}
{% endif %}
{% if row.getColumn('grown') %}