debian-mirror-gitlab/app/assets/javascripts/environments/components/environment_monitoring.vue

33 lines
544 B
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
/**
* Renders the Monitoring (Metrics) link in environments table.
*/
export default {
props: {
monitoringUrl: {
type: String,
required: true,
},
},
computed: {
title() {
return 'Monitoring';
},
},
};
</script>
<template>
<a
class="btn monitoring-url has-tooltip"
data-container="body"
rel="noopener noreferrer nofollow"
:href="monitoringUrl"
:title="title"
:aria-label="title">
<i
class="fa fa-area-chart"
aria-hidden="true" />
</a>
</template>