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

candidate_detail_row.vue « components « show « candidates « routes « experiment_tracking « ml « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 747e92b9e85e82a0e92e1e2fdc1b6c6b88577ff0 (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
<script>
export default {
  name: 'CandidateDetailRow',
  props: {
    label: {
      type: String,
      required: true,
    },
    sectionLabel: {
      type: String,
      required: false,
      default: '',
    },
  },
};
</script>

<template>
  <tr>
    <td class="gl-text-secondary gl-font-weight-bold">{{ sectionLabel }}</td>
    <td class="gl-font-weight-bold">{{ label }}</td>
    <td>
      <slot></slot>
    </td>
  </tr>
</template>