summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/reviewers/collapsed_reviewer.vue
blob: 2ea7c125a85446f5def51565c3a077a23ec8442d (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
<script>
// NOTE! For the first iteration, we are simply copying the implementation of Assignees
// It will soon be overhauled in Issue https://gitlab.com/gitlab-org/gitlab/-/issues/233736
import ReviewerAvatar from './reviewer_avatar.vue';

export default {
  components: {
    ReviewerAvatar,
  },
  props: {
    user: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <button type="button" class="btn-link gl-button">
    <reviewer-avatar :user="user" :img-size="24" />
    <span class="author"> {{ user.name }} </span>
  </button>
</template>