summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/mr_widget_maintainer_edit.vue
blob: 7a69cce695e8c96449bdd18601204795c644da42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
  export default {
    name: 'MRWidgetMaintainerEdit',
    props: {
      maintainerEditAllowed: {
        type: Boolean,
        default: false,
        required: false,
      },
    },
  };
</script>
<template>
  <section class="mr-info-list mr-maintainer-edit">
    <p v-if="maintainerEditAllowed">
      {{ s__("mrWidget|Allows edits from maintainers") }}
    </p>
  </section>
</template>