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

unmet_prerequisites_block.vue « components « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25a8da8487397b107ab8a984140b1078ecf5bbbf (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
<script>
import { GlLink } from '@gitlab/ui';
/**
 * Renders Unmet Prerequisites block for job's view.
 */
export default {
  components: {
    GlLink,
  },
  props: {
    helpPath: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <div class="bs-callout bs-callout-danger">
    <p class="js-failed-unmet-prerequisites append-bottom-0">
      {{
        s__(`Job|This job failed because the necessary resources were not successfully created.`)
      }}

      <gl-link :href="helpPath" class="js-help-path">
        <strong> {{ __('More information') }} </strong>
      </gl-link>
    </p>
  </div>
</template>