summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/shared/permissions/components/project_setting_row.vue
blob: 898d605463ff6012d7ad8dd777e3fa42bc8ad24a (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-bold"
    >
      {{ 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="form-text text-muted"
    >
      {{ helpText }}
    </span>
    <slot></slot>
  </div>
</template>