summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/components/sidebar_detail_row.vue
blob: ab2bcd728a801fcba5d11e87d47517f8bfb6a0a5 (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
25
26
27
28
29
30
31
<script>
  export default {
    name: 'SidebarDetailRow',
    props: {
      title: {
        type: String,
        required: false,
        default: '',
      },
      value: {
        type: String,
        required: true,
      },
    },
    computed: {
      hasTitle() {
        return this.title.length > 0;
      },
    },
  };
</script>
<template>
  <p class="build-detail-row">
    <span
      v-if="hasTitle"
      class="build-light-text">
      {{title}}:
    </span>
    {{value}}
  </p>
</template>