summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/shared/permissions/components/project_setting_row.vue
blob: 92d23772565fe362fa6ce0c1d14725926658cd10 (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
<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>