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

stage_column_mixin.js « mixins « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64283ed0e5856a51c1fd621cc456d22ac6bbfe04 (plain)
1
2
3
4
5
6
7
export default {
  methods: {
    buildConnnectorClass(index) {
      return index === 0 && !this.isFirstColumn ? 'left-connector' : '';
    },
  },
};