Index: Tools/GardeningServer/ui/ct-results-panel.html |
diff --git a/Tools/GardeningServer/ui/ct-results-panel.html b/Tools/GardeningServer/ui/ct-results-panel.html |
index c753a8cbc02705047d5525b6701584fb69f5697f..eb16e0fbab815d7afb6947d2f259586f549c08bf 100644 |
--- a/Tools/GardeningServer/ui/ct-results-panel.html |
+++ b/Tools/GardeningServer/ui/ct-results-panel.html |
@@ -29,6 +29,10 @@ found in the LICENSE file. |
text-align: center; |
} |
+ iframe { |
+ height: 100%; |
+ } |
+ |
core-menu { |
box-shadow: 0 3px 3px #ccc; |
flex: none; |
@@ -47,9 +51,12 @@ found in the LICENSE file. |
padding-top: 6px; |
} |
</style> |
- <template if="{{ !failures.length }}"> |
+ <template if="{{ !failures.length && !failures.url }}"> |
<div class="message">No results to display.</div> |
</template> |
+ <template if="{{ failures.url }}"> |
+ <iframe src='{{ failures.url }}'></iframe> |
+ </template> |
<template if="{{ failures.length }}"> |
<core-menu selected="{{ selected }}"> |
<template repeat="{{ failure in failures }}"> |