summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/permissions/components/project_setting_row.vue
blob: 6140d74fea81e619526131a4e4c0241dbd1ff3b5 (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
<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 />
  </div>
</template>