fix testsuite name bugs and improve some ui details
[bottlenecks.git] / test-scheduler / ui / src / components / test_result.vue
1 <template>
2     <div>
3         <iframe style='min-height: 700px;' height='100%' width='100%'
4         v-bind:src='frameSrc'>
5         </iframe>
6     </div>
7 </template>
8
9 <script>
10
11 export default {
12     data: function() {
13         return {
14             frameSrc: this.global.GRAFANA_ADDR
15         }
16     }
17 }
18 </script>
19
20 <style scoped>
21 </style>