fix testsuite name bugs and improve some ui details
[bottlenecks.git] / test-scheduler / ui / src / components / test_result.vue
diff --git a/test-scheduler/ui/src/components/test_result.vue b/test-scheduler/ui/src/components/test_result.vue
new file mode 100644 (file)
index 0000000..37bbc4d
--- /dev/null
@@ -0,0 +1,21 @@
+<template>
+    <div>
+        <iframe style='min-height: 700px;' height='100%' width='100%'
+        v-bind:src='frameSrc'>
+        </iframe>
+    </div>
+</template>
+
+<script>
+
+export default {
+    data: function() {
+        return {
+            frameSrc: this.global.GRAFANA_ADDR
+        }
+    }
+}
+</script>
+
+<style scoped>
+</style>