summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/mixins/stage_column_mixin.js
blob: 3f3007ba11af122bb78015f9d27c025f4a061045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default {
  props: {
    hasTriggeredBy: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  methods: {
    buildConnnectorClass(index) {
      return index === 0 && (!this.isFirstColumn || this.hasTriggeredBy) ? 'left-connector' : '';
    },
  },
};