feat: Add GA integration, support for GA4 (#4626)
* GA integration settings * trackingId -> measurementId Hook up script * Public page GA tracking Correct layout of settings * Remove multiple codepaths for loading GA measurementID, add missing db index * Remove unneccessary changes, tsc * test
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { filter } from "lodash";
|
||||
import { computed } from "mobx";
|
||||
import { IntegrationService } from "@shared/types";
|
||||
import naturalSort from "@shared/utils/naturalSort";
|
||||
import BaseStore from "~/stores/BaseStore";
|
||||
import RootStore from "~/stores/RootStore";
|
||||
@@ -18,7 +19,7 @@ class IntegrationsStore extends BaseStore<Integration> {
|
||||
@computed
|
||||
get slackIntegrations(): Integration[] {
|
||||
return filter(this.orderedData, {
|
||||
service: "slack",
|
||||
service: IntegrationService.Slack,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user