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 <tsteur@users.noreply.github.com>2016-06-14 00:36:06 +0300
committerGitHub <noreply@github.com>2016-06-14 00:36:06 +0300
commit49137e9a05fd5bf47fd483ec47089cddcde31961 (patch)
tree0fa32adad26f5a18dde8a47595073810b446d18f /plugins/CoreHome/javascripts/dataTable.js
parent0845fc1337fdd5521b2621bb00e41a5d6ea73a44 (diff)
in Evolution over the period when Period is Day the limit should be actually 8 instead of 7
See https://github.com/piwik/piwik/issues/10130#issuecomment-223947149
Diffstat (limited to 'plugins/CoreHome/javascripts/dataTable.js')
-rw-r--r--plugins/CoreHome/javascripts/dataTable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/javascripts/dataTable.js b/plugins/CoreHome/javascripts/dataTable.js
index 20b0f4a361..968c2fde20 100644
--- a/plugins/CoreHome/javascripts/dataTable.js
+++ b/plugins/CoreHome/javascripts/dataTable.js
@@ -473,7 +473,7 @@ $.extend(DataTable.prototype, UIControl.prototype, {
var tableRowLimits = piwik.config.datatable_row_limits,
evolutionLimits =
{
- day: [7, 30, 60, 90, 180, 365, 500],
+ day: [8, 30, 60, 90, 180, 365, 500],
week: [4, 12, 26, 52, 104, 500],
month: [3, 6, 12, 24, 36, 120],
year: [3, 5, 10]