All files / app/assets/javascripts/feature_flags/components/strategies parameter_form_group.vue

100% Statements 1/1
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23  11x                                          
<script>
import { GlFormGroup } from '@gitlab/ui';
import { uniqueId } from 'lodash';
 
export default {
  components: {
    GlFormGroup,
  },
  props: {
    inputId: {
      required: false,
      type: String,
      default: () => uniqueId('feature_flag_strategies_'),
    },
  },
};
</script>
<template>
  <gl-form-group :label-for="inputId" v-bind="$attrs">
    <slot v-bind="{ inputId }"></slot>
  </gl-form-group>
</template>