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

stage_review_component.js.es6 « components « cycle_analytics « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 292f8ada3f47c3e9f88ec16516761de75cd21838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
((global) => {

  global.cycleAnalytics = global.cycleAnalytics || {};

  global.cycleAnalytics.StageReviewComponent = Vue.extend({
    template: '#stage-review-component',
    components: {
      'item-merge-request-component': gl.cycleAnalytics.ItemMergeRequestComponent,
    },
    props: {
      items: Array,
    }
  });

})(window.gl || (window.gl = {}));