summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/ci_pipeline_link.vue
blob: eae4c06467cb2d82a4898cbb9fac81804119eaf8 (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
<script>
import { GlLink, GlTooltipDirective } from '@gitlab/ui';

export default {
  components: {
    GlLink,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  props: {
    href: {
      type: String,
      required: true,
    },
    pipelineId: {
      type: Number,
      required: true,
    },
    pipelineIid: {
      type: Number,
      required: true,
    },
  },
};
</script>
<template>
  <gl-link v-gl-tooltip :href="href" :title="__('Pipeline ID (IID)')">
    <span class="pipeline-id">#{{ pipelineId }}</span>
    <span class="pipeline-iid">(#{{ pipelineIid }})</span>
  </gl-link>
</template>