Commit 283ace44 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'mr-widget-author-component-backport' into 'master'

Backport of mr_widget_author.vue EE changes

See merge request gitlab-org/gitlab-ce!16884
parents 8e97e1fc 9b797137
<script> <script>
import tooltip from '../../vue_shared/directives/tooltip';
export default { export default {
name: 'MRWidgetAuthor', name: 'MRWidgetAuthor',
directives: {
tooltip,
},
props: { props: {
author: { author: {
type: Object, type: Object,
required: true, required: true,
}, },
showAuthorName: {
type: Boolean,
required: false,
default: true,
},
showAuthorTooltip: {
type: Boolean,
required: false,
default: false,
},
}, },
computed: { computed: {
authorUrl() { authorUrl() {
...@@ -21,12 +36,17 @@ ...@@ -21,12 +36,17 @@
<a <a
:href="authorUrl" :href="authorUrl"
class="author-link inline" class="author-link inline"
:v-tooltip="showAuthorTooltip"
:title="author.name"
> >
<img <img
:src="avatarUrl" :src="avatarUrl"
class="avatar avatar-inline s16" class="avatar avatar-inline s16"
/> />
<span class="author"> <span
class="author"
v-if="showAuthorName"
>
{{ author.name }} {{ author.name }}
</span> </span>
</a> </a>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment