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

mr_widget_archived.vue « 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: 7ddcdd49df54431d131f50bea40655fd23c96efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<script>
import statusIcon from '../mr_widget_status_icon.vue';

export default {
  name: 'MRWidgetArchived',
  components: {
    statusIcon,
  },
};
</script>
<template>
  <div class="mr-widget-body media">
    <div class="space-children">
      <status-icon status="warning" />
      <button type="button" class="btn btn-success btn-sm" disabled="true">
        {{ s__('mrWidget|Merge') }}
      </button>
    </div>
    <div class="media-body">
      <span class="bold">
        {{ s__('mrWidget|This project is archived, write access has been disabled') }}
      </span>
    </div>
  </div>
</template>