[portal][fix] fix incorrect page_view events

This commit is contained in:
Yangshun Tay
2022-11-07 15:16:47 +08:00
parent 3fe4f760ac
commit cc22f23d97

View File

@@ -17,13 +17,11 @@ function pageview(measurementID: string, url: string) {
return;
}
window.gtag('config', measurementID, {
window.gtag('event', 'page_view', {
page_location: window.location.href,
page_path: url,
});
window.gtag('event', url, {
event_category: 'pageview',
event_label: document.title,
page_title: document.title,
send_to: measurementID,
});
}