summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_nothing_to_merge.js
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>
  `,
};