summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_not_allowed.vue
blob: e4af50b09f8fcef70db6039d5cac911ced61811d (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: 'MRWidgetNotAllowed',
    components: {
      StatusIcon,
    },
  };
</script>

<template>
  <div class="mr-widget-body media">
    <status-icon
      status="success"
      :show-disabled-button="true"
    />
    <div class="media-body space-children">
      <span class="bold">
        {{ s__(`mrWidget|Ready to be merged automatically.
Ask someone with write access to this repository to merge this request`) }}
      </span>
    </div>
  </div>
</template>