Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-08-12 00:10:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-12 00:10:33 +0300
commit63fd08e6b429cd3af81cf63dfc0e5fc853d04086 (patch)
tree89f4a922331fb3162ee6e4e839196d41ac96e026 /doc/development/snowplow
parentb54cbe2c737b3672737bb7cd1919a030cd75484c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/snowplow')
-rw-r--r--doc/development/snowplow/index.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/development/snowplow/index.md b/doc/development/snowplow/index.md
index 552249344c7..59361e5206c 100644
--- a/doc/development/snowplow/index.md
+++ b/doc/development/snowplow/index.md
@@ -279,7 +279,8 @@ export default {
```
The event data can be provided with a `tracking` object, declared in the `data` function,
-or as a `computed property`.
+or as a `computed property`. A `tracking` object is convenient when the default
+event properties are dynamic or provided at runtime.
```javascript
export default {
@@ -292,6 +293,7 @@ export default {
// category: '',
// property: '',
// value: '',
+ // experiment: '',
// extra: {},
},
};