summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/components/shared/prometheus_header.vue
blob: 153c8f389dba664eef6120c76c2f51cfdb8bf6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
export default {
  props: {
    graphTitle: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <div class="prometheus-graph-header">
    <h5 class="prometheus-graph-title js-graph-title">{{ graphTitle }}</h5>
  </div>
</template>