diff --git a/packages/frontend/src/components/dialogs/AppEditDialog.vue b/packages/frontend/src/components/dialogs/AppEditDialog.vue index a05c08eaf..bb95b8dbc 100644 --- a/packages/frontend/src/components/dialogs/AppEditDialog.vue +++ b/packages/frontend/src/components/dialogs/AppEditDialog.vue @@ -242,7 +242,7 @@ export default { async editApp() { if (!this.$refs.form.validate()) return - //this.$matomo && this.$matomo.trackPageView('user/app/update') + this.$matomo && this.$matomo.trackPageView('user/app/update') try { let res = await this.$apollo.mutate({ diff --git a/packages/frontend/src/views/stream/Commit.vue b/packages/frontend/src/views/stream/Commit.vue index 7e1a071d1..55169477d 100644 --- a/packages/frontend/src/views/stream/Commit.vue +++ b/packages/frontend/src/views/stream/Commit.vue @@ -259,7 +259,7 @@ export default { }) }, deleteCommit() { - //this.$matomo && this.$matomo.trackPageView('commit/delete') + this.$matomo && this.$matomo.trackPageView('commit/delete') let commitBranch = null if (this.stream && this.stream.commit && this.stream.commit.branchName && this.stream.commit.branchName) commitBranch = this.stream.commit.branchName