summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_projects/components/incompatible_repo_table_row.vue
blob: fa2fb439eaca0572f52d30c212c59d42e9c82d16 (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 { GlBadge } from '@gitlab/ui';

export default {
  components: {
    GlBadge,
  },
  props: {
    repo: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <tr class="import-row">
    <td>
      <a :href="repo.providerLink" rel="noreferrer noopener" target="_blank">
        {{ repo.fullName }}
      </a>
    </td>
    <td></td>
    <td></td>
    <td>
      <gl-badge variant="danger">{{ __('Incompatible project') }}</gl-badge>
    </td>
  </tr>
</template>