summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/source_branch_removal_status.vue
blob: caafd6b995e2807faa88095a7c7a0299149ec895 (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
<script>
import { GlIcon, GlTooltipDirective } from '@gitlab/ui';
import { __ } from '../../locale';

export default {
  i18n: {
    removesBranchText: __('Deletes the source branch'),
    tooltipTitle: __('A user with write access to the source branch selected this option'),
  },
  components: {
    GlIcon,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
};
</script>

<template>
  <p v-once class="mr-info-list gl-ml-7 gl-pb-5 gl-mb-0">
    <span class="status-text">
      {{ $options.i18n.removesBranchText }}
    </span>
    <gl-icon
      v-gl-tooltip.hover
      :title="$options.i18n.tooltipTitle"
      :aria-label="$options.i18n.tooltipTitle"
      name="question-o"
    />
  </p>
</template>