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

collapsed_reviewer.vue « reviewers « components « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6de926e0ff98a1ca4bb2be9e36fd5d4e4ba533f1 (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">
    <reviewer-avatar :user="user" :img-size="24" />
    <span class="author"> {{ user.name }} </span>
  </button>
</template>