debian-mirror-gitlab/app/assets/javascripts/jobs/components/sidebar_detail_row.vue

57 lines
989 B
Vue
Raw Normal View History

2017-09-10 17:25:29 +05:30
<script>
export default {
name: 'SidebarDetailRow',
props: {
title: {
type: String,
required: false,
default: '',
},
value: {
type: String,
required: true,
},
2018-05-09 12:01:36 +05:30
helpUrl: {
type: String,
required: false,
default: '',
},
2017-09-10 17:25:29 +05:30
},
computed: {
hasTitle() {
return this.title.length > 0;
},
2018-05-09 12:01:36 +05:30
hasHelpURL() {
return this.helpUrl.length > 0;
},
2017-09-10 17:25:29 +05:30
},
};
</script>
<template>
<p class="build-detail-row">
<span
v-if="hasTitle"
2018-03-17 18:26:18 +05:30
class="build-light-text"
>
{{ title }}:
2017-09-10 17:25:29 +05:30
</span>
2018-03-17 18:26:18 +05:30
{{ value }}
2018-05-09 12:01:36 +05:30
<span
v-if="hasHelpURL"
2018-11-08 19:23:39 +05:30
class="help-button float-right"
2018-05-09 12:01:36 +05:30
>
<a
:href="helpUrl"
target="_blank"
rel="noopener noreferrer nofollow"
>
<i
class="fa fa-question-circle"
aria-hidden="true"
></i>
</a>
</span>
2017-09-10 17:25:29 +05:30
</p>
</template>