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

mr_widget_locked.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: 1b693d856b1b5a04f45f026050ebc850f68e0ae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export default {
  name: 'MRWidgetLocked',
  props: {
    mr: { type: Object, required: true },
  },
  template: `
    <div class="mr-state-locked">
      <span class="state-label">Locked</span>
      This merge request is in the process of being merged, during which time it is locked and cannot be closed.
      <i
        class="fa fa-spinner fa-spin"
        aria-hidden="true" />
      <section class="mr-info-list mr-links">
        <p>
          The changes will be merged into
          <span class="label-branch">
            <a :href="mr.targetBranchPath">{{mr.targetBranch}}</a>
          </span>.
        </p>
      </section>
    </div>
  `,
};