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

mr_widget_not_allowed.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: 6d80684fdd772bc27287e7afcb027d043c5757b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export default {
  name: 'MRWidgetNotAllowed',
  template: `
    <div>
      <button
        type="button"
        class="btn btn-success btn-small"
        disabled="true">
        Merge
      </button>
      <span class="bold">
        Ready to be merged automatically.
        Ask someone with write access to this repository to merge this request.
      </span>
    </div>
  `,
};