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

jira_import_setup.vue « components « jira_import « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44773a773d5913febd5548995757ec5eb6ce59b2 (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
<script>
import { GlEmptyState } from '@gitlab/ui';

export default {
  name: 'JiraImportSetup',
  components: {
    GlEmptyState,
  },
  props: {
    illustration: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <gl-empty-state
    :svg-path="illustration"
    title=""
    :description="__('You will first need to set up Jira Integration to use this feature.')"
    :primary-button-text="__('Set up Jira Integration')"
    primary-button-link="../services/jira/edit"
  />
</template>