Fix analytics naming and BibTeX syntax errors

The changes fix a missing comma in the BibTeX file and updates analytics
event names to better reflect user interactions ("View" -> "Click")
This commit is contained in:
2025-08-27 13:22:38 +02:00
parent 396d83e067
commit 9bac3cf33c
2 changed files with 4 additions and 4 deletions

View File

@@ -69,7 +69,7 @@ export function trackPdfView(
pdfType: "paper" | "poster";
},
) {
track("Publication PDF View", {
track("Publication PDF Click", {
title: data.publicationTitle,
type: data.publicationType,
year: data.publicationYear.toString(),
@@ -96,12 +96,12 @@ export function trackDoiClick(
}
/**
* Track slides views specifically
* Track slides clicks - user intent/engagement
*/
export function trackSlidesView(
data: Omit<PublicationTrackingData, "linkType">,
) {
track("Publication Slides View", {
track("Publication Slides Click", {
title: data.publicationTitle,
type: data.publicationType,
year: data.publicationYear.toString(),