Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runner_paused_badge.vue « components « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00fd84a48d87f68a8064157fc1f4bb273738978e (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
<script>
import { GlBadge, GlTooltipDirective } from '@gitlab/ui';
import { I18N_PAUSED, I18N_PAUSED_DESCRIPTION } from '../constants';

export default {
  components: {
    GlBadge,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  I18N_PAUSED,
  I18N_PAUSED_DESCRIPTION,
};
</script>
<template>
  <gl-badge
    v-gl-tooltip="$options.I18N_PAUSED_DESCRIPTION"
    variant="warning"
    icon="status-paused"
    v-bind="$attrs"
  >
    {{ $options.I18N_PAUSED }}
  </gl-badge>
</template>