summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_import/components/jira_import_setup.vue
blob: 917930397f4050e098fe34317af13c5a6418334d (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
<script>
export default {
  name: 'JiraImportSetup',
  props: {
    illustration: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <div class="empty-state">
    <div class="svg-content">
      <img :src="illustration" :alt="__('Set up Jira Integration illustration')" />
    </div>
    <div class="text-content d-flex flex-column align-items-center">
      <p>{{ __('You will first need to set up Jira Integration to use this feature.') }}</p>
      <a class="btn btn-success" href="../services/jira/edit">
        {{ __('Set up Jira Integration') }}
      </a>
    </div>
  </div>
</template>