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

environment_monitoring.vue « components « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06c7f10223ae625bb30192daa72bbf5a1019bd3b (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
<script>
import { GlDropdownItem } from '@gitlab/ui';
import { __ } from '~/locale';
/**
 * Renders the Monitoring (Metrics) link in environments table.
 */
export default {
  components: {
    GlDropdownItem,
  },
  props: {
    monitoringUrl: {
      type: String,
      required: true,
    },
  },
  title: __('Monitoring'),
};
</script>
<template>
  <gl-dropdown-item :href="monitoringUrl" rel="noopener noreferrer nofollow" target="_blank">
    {{ $options.title }}
  </gl-dropdown-item>
</template>