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:
authordiosmosis <diosmosis@users.noreply.github.com>2019-03-19 05:38:49 +0300
committerGitHub <noreply@github.com>2019-03-19 05:38:49 +0300
commit7d0c3c65ea7dae9b415fd017c63699c641826e8a (patch)
tree05dfd471e848cf766b7d7193a801107235fe80b5 /plugins/Contents
parent73ef47a0e6c803e4b1885dfacdff89c91419329d (diff)
Fixing build (#14222)
* Fix test failure. * Update expected test file.s * Fix action iconSVG regression. * Update submodule. * Update screenshots. * Update more UI test files.
Diffstat (limited to 'plugins/Contents')
-rw-r--r--plugins/Contents/templates/_actionContent.twig4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Contents/templates/_actionContent.twig b/plugins/Contents/templates/_actionContent.twig
index ae8f19018e..801974064b 100644
--- a/plugins/Contents/templates/_actionContent.twig
+++ b/plugins/Contents/templates/_actionContent.twig
@@ -2,10 +2,10 @@
title="{{ postEvent('Live.renderActionTooltip', action, visitInfo) }}">
<div>
{% if action.contentInteraction %}
- <img src='{{ action.icon }}' title='{{ 'Contents_ContentInteraction'|translate }}'
+ <img src='{{ action.iconSVG|default(action.icon) }}' title='{{ 'Contents_ContentInteraction'|translate }}'
class="action-list-action-icon content-interaction">
{% else %}
- <img src='{{ action.icon }}' title='{{ 'Contents_ContentImpression'|translate }}'
+ <img src='{{ action.iconSVG|default(action.icon) }}' title='{{ 'Contents_ContentImpression'|translate }}'
class="action-list-action-icon content-impression">
{% endif %}
{% if action.contentInteraction %}