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 ZILLIOX <thomas@zilliox.me>2013-08-05 18:06:22 +0400
committerThomas ZILLIOX <thomas@zilliox.me>2013-08-05 18:06:22 +0400
commit629e54999c31c0e5d3b6eae1ad5f123bb90f6f09 (patch)
tree3287905711ad5ae0531beada29db26cd5524e9c6 /plugins/Dashboard/templates
parentfb3b2a7e4ec3f237dfa506f80bc0bf0353b797d4 (diff)
Bugfix: Add display of site selector in PDFReports
Diffstat (limited to 'plugins/Dashboard/templates')
-rw-r--r--plugins/Dashboard/templates/index.twig5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Dashboard/templates/index.twig b/plugins/Dashboard/templates/index.twig
index cc86a56715..e16fb1955e 100644
--- a/plugins/Dashboard/templates/index.twig
+++ b/plugins/Dashboard/templates/index.twig
@@ -4,8 +4,9 @@
<div id="Dashboard">
<ul>
{% for dashboard in dashboards %}
- <li class="dashboardMenuItem" id="Dashboard_embeddedIndex_{{ dashboard.iddashboard }}"><a
- href="javascript:$('#dashboardWidgetsArea').dashboard('loadDashboard', {{ dashboard.iddashboard }});">{{ dashboard.name|escape }}</a></li>
+ <li class="dashboardMenuItem" id="Dashboard_embeddedIndex_{{ dashboard.iddashboard }}">
+ <a href="javascript:$('#dashboardWidgetsArea').dashboard('loadDashboard', {{ dashboard.iddashboard }});">{{ dashboard.name|escape }}</a>
+ </li>
{% endfor %}
</ul>
</div>