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

mr_widget_nothing_to_merge.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: 8c4535f1337062244eafc7ca1bd662bdf5d3e2f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export default {
  name: 'MRWidgetNothingToMerge',
  template: `
    <div class="mr-widget-body">
      <button
        type="button"
        class="btn btn-success btn-small"
        disabled="true">
        Merge
      </button>
      <span class="bold">
        There is nothing to merge from source branch into target branch.
        Please push new commits or use a different branch.
      </span>
    </div>
  `,
};