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

runner_online_stat.vue « stat « components « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b92b9badef0302cb685b931f9052589d2f8add72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
import { GlSingleStat } from '@gitlab/ui/dist/charts';

export default {
  components: {
    GlSingleStat,
  },
};
</script>
<template>
  <gl-single-stat
    v-bind="$attrs"
    variant="success"
    :title="s__('Runners|Online Runners')"
    :meta-text="s__('Runners|online')"
  />
</template>