Resolves https://github.com/webrecorder/browsertrix/issues/2359 ## Changes - Track when a workflow form section is opened - Hide workflow form section navigation on small screens --------- Co-authored-by: Ilya Kreymer <ikreymer@users.noreply.github.com> Co-authored-by: Emma Segal-Grossman <hi@emma.cafe> Co-authored-by: Ilya Kreymer <ikreymer@gmail.com>
20 lines
373 B
TypeScript
20 lines
373 B
TypeScript
/**
|
|
* All available analytics tracking events
|
|
*/
|
|
|
|
export enum AnalyticsTrackEvent {
|
|
/**
|
|
* Generic
|
|
*/
|
|
PageView = "pageview",
|
|
/**
|
|
* Collections
|
|
*/
|
|
CopyShareCollectionLink = "Copy share collection link",
|
|
DownloadPublicCollection = "Download public collection",
|
|
/**
|
|
* Workflows
|
|
*/
|
|
ExpandWorkflowFormSection = "Expand workflow form section",
|
|
}
|