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

pipeline_editor_header.vue « header « components « pipeline_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab41c0170e9b4095561007d69a07f25d47c65465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<script>
import ValidationSegment from './validation_segment.vue';

export default {
  validationSegmentClasses:
    'gl-p-5 gl-bg-gray-10 gl-border-solid gl-border-1 gl-border-gray-100 gl-rounded-base',
  components: {
    ValidationSegment,
  },
  props: {
    ciConfigData: {
      type: Object,
      required: true,
    },
    isCiConfigDataLoading: {
      type: Boolean,
      required: true,
    },
  },
};
</script>
<template>
  <div class="gl-mb-5">
    <validation-segment
      :class="$options.validationSegmentClasses"
      :loading="isCiConfigDataLoading"
      :ci-config="ciConfigData"
    />
  </div>
</template>