We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 248a11f commit e956b7eCopy full SHA for e956b7e
2 files changed
static/js/store/components/PackageList/PackageList.tsx
@@ -141,6 +141,7 @@ function PackageList({
141
(parseInt(currentPage) - 1) * ITEMS_PER_PAGE +
142
index +
143
1,
144
+ packageData.package.name,
145
);
146
}
147
}}
static/js/store/utils/searchTracker.ts
@@ -51,10 +51,12 @@ export function trackSearchResults(
51
export function trackSearchResultClicked(
52
query: string,
53
position: number,
54
+ snapName: string,
55
): void {
56
trackEvent("snap_store_search_result_clicked", {
57
search_id: getSearchId(),
58
query,
59
position,
60
+ snap_name: snapName,
61
});
62
0 commit comments