ci_pipeline_link.vue 619 Bytes
Newer Older
Mike Scott's avatar
Mike Scott committed
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>