44 lines
907 B
Vue
44 lines
907 B
Vue
<script>
|
|
import { GlLink } from '@gitlab/ui';
|
|
|
|
export default {
|
|
name: 'SidebarDetailRow',
|
|
components: {
|
|
GlLink,
|
|
},
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
value: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
helpUrl: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
},
|
|
computed: {
|
|
hasTitle() {
|
|
return this.title.length > 0;
|
|
},
|
|
hasHelpURL() {
|
|
return this.helpUrl.length > 0;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<p class="build-detail-row">
|
|
<span v-if="hasTitle" class="font-weight-bold">{{ title }}:</span> {{ value }}
|
|
<span v-if="hasHelpURL" class="help-button float-right">
|
|
<gl-link :href="helpUrl" target="_blank" rel="noopener noreferrer nofollow">
|
|
<i class="fa fa-question-circle" aria-hidden="true"></i>
|
|
</gl-link>
|
|
</span>
|
|
</p>
|
|
</template>
|