From e3512ddd7e3e02f858eff5cdb176ebbefb335024 Mon Sep 17 00:00:00 2001 From: Levente Balogh Date: Mon, 6 Feb 2023 12:15:44 +0100 Subject: [PATCH] Datasources: Fix tracking event name (#62940) fix: fix typo in event name --- public/app/features/datasources/tracking.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/datasources/tracking.ts b/public/app/features/datasources/tracking.ts index dcc27c2200e..82c702affb4 100644 --- a/public/app/features/datasources/tracking.ts +++ b/public/app/features/datasources/tracking.ts @@ -72,5 +72,5 @@ export const trackExploreClicked = (props: DataSourceGeneralTrackingProps) => { }; export const trackCreateDashboardClicked = (props: DataSourceGeneralTrackingProps) => { - reportInteraction('grafana_ds_explore_datasource_clicked', props); + reportInteraction('grafana_ds_create_dashboard_clicked', props); };