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

mr_widget_pipeline_blocked.js « states « components « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e66ce071ab4ad93db0df14779508f18f44c9bf6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import statusIcon from '../mr_widget_status_icon.vue';

export default {
  name: 'MRWidgetPipelineBlocked',
  components: {
    statusIcon,
  },
  template: `
    <div class="mr-widget-body media">
      <status-icon status="warning" :show-disabled-button="true" />
      <div class="media-body space-children">
        <span class="bold">
          Pipeline blocked. The pipeline for this merge request requires a manual action to proceed
        </span>
      </div>
    </div>
  `,
};