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

mr_widget_pipeline_failed.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: 002820123ca17ce7957dc14255dcfe632c115ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export default {
  name: 'MRWidgetPipelineBlocked',
  template: `
    <div class="mr-widget-body">
      <button
        class="btn btn-success btn-small"
        disabled="true"
        type="button">
        Merge
      </button>
      <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>
  `,
};