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

runner_jobs_empty_state.vue « components « runner « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e68c2ea71afbe53ddd14688d9d6b50029c2219b (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
<script>
import EMPTY_STATE_SVG_URL from '@gitlab/svgs/dist/illustrations/empty-state/empty-pipeline-md.svg?url';

import { GlEmptyState } from '@gitlab/ui';
import { s__ } from '~/locale';

export default {
  i18n: {
    title: s__('Runners|This runner has not run any jobs'),
    description: s__(
      'Runners|Make sure the runner is online and available to run jobs (not paused). Jobs display here when the runner picks them up.',
    ),
  },
  components: {
    GlEmptyState,
  },
  EMPTY_STATE_SVG_URL,
};
</script>

<template>
  <gl-empty-state
    :svg-path="$options.EMPTY_STATE_SVG_URL"
    :svg-height="150"
    :title="$options.i18n.title"
  >
    <template #description>
      <p>{{ $options.i18n.description }}</p>
    </template>
  </gl-empty-state>
</template>