summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/permissions/components/project_setting_row.vue
blob: 25a88f846eb3aaa099df8e1b8ca48d3a9a176db4 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<script>
  export default {
    props: {
      label: {
        type: String,
        required: false,
        default: null,
      },
      helpPath: {
        type: String,
        required: false,
        default: null,
      },
      helpText: {
        type: String,
        required: false,
        default: null,
      },
    },
  };
</script>

<template>
  <div class="project-feature-row">
    <label
      v-if="label"
      class="label-light"
    >
      {{ label }}
      <a
        v-if="helpPath"
        :href="helpPath"
        target="_blank"
      >
        <i
          aria-hidden="true"
          data-hidden="true"
          class="fa fa-question-circle"
        >
        </i>
      </a>
    </label>
    <span
      v-if="helpText"
      class="help-block"
    >
      {{ helpText }}
    </span>
    <slot></slot>
  </div>
</template>