mr_widget_pipeline_failed.js 503 字节
Newer Older
1
import statusIcon from '../mr_widget_status_icon.vue';
S
Simon Knox 已提交
2

F
Fatih Acet 已提交
3 4
export default {
  name: 'MRWidgetPipelineBlocked',
S
Simon Knox 已提交
5 6 7
  components: {
    statusIcon,
  },
F
Fatih Acet 已提交
8
  template: `
S
Simon Knox 已提交
9
    <div class="mr-widget-body media">
F
Filipa Lacerda 已提交
10
      <status-icon status="warning" :show-disabled-button="true" />
S
Simon Knox 已提交
11 12 13 14 15
      <div class="media-body space-children">
        <span class="bold">
          The pipeline for this merge request failed. Please retry the job or push a new commit to fix the failure
        </span>
      </div>
F
Fatih Acet 已提交
16 17 18
    </div>
  `,
};