From 62aad6fd84cacebf2c268d58e988329dcd8e0601 Mon Sep 17 00:00:00 2001 From: Princi Vershwal Date: Tue, 2 Jul 2024 14:11:32 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20analytics=20sources=20to?= =?UTF-8?q?=20not=20be=20case=20sensitive=20(#20506)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes https://linear.app/tryghost/issue/ENG-925/analytics-sources-shouldnt-be-case-sensitive --- ghost/admin/app/services/dashboard-stats.js | 1 - 1 file changed, 1 deletion(-) diff --git a/ghost/admin/app/services/dashboard-stats.js b/ghost/admin/app/services/dashboard-stats.js index 0c17716fff..8ffcb7d54b 100644 --- a/ghost/admin/app/services/dashboard-stats.js +++ b/ghost/admin/app/services/dashboard-stats.js @@ -242,7 +242,6 @@ export default class DashboardStatsService extends Service { if (!this.memberAttributionStats) { return []; } - return this.memberAttributionStats.filter((stat) => { if (this.chartDays === 'all') { return true;