Skip to content
Snippets Groups Projects
environment_monitoring.vue 544 B
Newer Older
  • Learn to ignore specific revisions
  • <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>