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

environment_external_url.js « components « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4f9eb357fde7fc82bb96ae057cdc9ccaa88ec97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * Renders the external url link in environments table.
 */
export default {
  props: {
    externalUrl: {
      type: String,
      default: '',
    },
  },

  template: `
    <a
      class="btn external_url"
      :href="externalUrl"
      target="_blank"
      rel="noopener noreferrer"
      title="Environment external URL">
      <i class="fa fa-external-link" aria-hidden="true"></i>
    </a>
  `,
};