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: 27618290ce6a3eeb8d57f70c3a3a4754ea77aebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
import { GlBadge, GlTooltipDirective } from '@gitlab/ui';
import { I18N_PAUSED_DESCRIPTION } from '../constants';

export default {
  components: {
    GlBadge,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  I18N_PAUSED_DESCRIPTION,
};
</script>
<template>
  <gl-badge v-gl-tooltip="$options.I18N_PAUSED_DESCRIPTION" variant="danger" v-bind="$attrs">
    {{ s__('Runners|paused') }}
  </gl-badge>
</template>