summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_checking.vue
blob: cf26003d03813f18d6c250576eff70614d9c3589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
import statusIcon from '../mr_widget_status_icon.vue';

export default {
  name: 'MRWidgetChecking',
  components: {
    statusIcon,
  },
};
</script>
<template>
  <div class="mr-widget-body media">
    <status-icon :show-disabled-button="true" status="loading" />
    <div class="media-body space-children">
      <span class="bold"> {{ s__('mrWidget|Checking ability to merge automatically') }} </span>
    </div>
  </div>
</template>