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

incompatible_repo_table_row.vue « components « import_projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d44c155a84e243d7d3e6ebfa94f033f038b2d206 (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
32
<script>
import { GlIcon, GlBadge } from '@gitlab/ui';

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

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