diff --git a/BTCPayServer/Views/UIReports/StoreReports.cshtml b/BTCPayServer/Views/UIReports/StoreReports.cshtml
index 986d77686..17f79099a 100644
--- a/BTCPayServer/Views/UIReports/StoreReports.cshtml
+++ b/BTCPayServer/Views/UIReports/StoreReports.cshtml
@@ -128,7 +128,7 @@
-
+
{{ displayDate(value) }}
diff --git a/BTCPayServer/wwwroot/js/datatable.js b/BTCPayServer/wwwroot/js/datatable.js
index 9e3237ca7..0a7df50b9 100644
--- a/BTCPayServer/wwwroot/js/datatable.js
+++ b/BTCPayServer/wwwroot/js/datatable.js
@@ -187,6 +187,7 @@
}
function createTable(summaryDefinition, fields, rows) {
+ rows = clone(rows);
var groupIndices = summaryDefinition.groups.map(g => fields.findIndex((a) => a === g)).filter(g => g !== -1);
var aggregatesIndices = summaryDefinition.aggregates.map(g => fields.findIndex((a) => a === g)).filter(g => g !== -1);
aggregatesIndices = aggregatesIndices.filter(g => g !== -1);