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

mr_widget_archived.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: c7f25a1697c358bca012cffb447f06ce755fa5dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export default {
  name: 'MRWidgetArchived',
  template: `
    <div class="mr-widget-body">
      <button
        type="button"
        class="btn btn-success btn-small"
        disabled="true">
        Merge
      </button>
      <span class="bold">
        This project is archived, write access has been disabled.
      </span>
    </div>
  `,
};