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

utils.js « details « packages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27cc95566d35115ae2ca030da26d95b1a33b0899 (plain)
1
2
3
4
5
6
7
8
9
10
import { TrackingActions } from './constants';

export const trackInstallationTabChange = {
  methods: {
    trackInstallationTabChange(tabIndex) {
      const action = tabIndex === 0 ? TrackingActions.INSTALLATION : TrackingActions.REGISTRY_SETUP;
      this.track(action, { label: this.trackingLabel });
    },
  },
};