diff --git a/frontend/src/views/Dashboard.vue b/frontend/src/views/Dashboard.vue index 8f8d1ed..7813088 100644 --- a/frontend/src/views/Dashboard.vue +++ b/frontend/src/views/Dashboard.vue @@ -270,7 +270,16 @@
-
Platform Health
+
+
Platform Health
+ +
+ + healthy + + failing +
+
+ > + + {{ row.failing }} of {{ row.total }} {{ row.platform }} source{{ row.total !== 1 ? 's' : '' }} failing + +
{{ row.failing }}/{{ row.total }}
@@ -717,4 +730,13 @@ async function retrySource(source) { min-width: 50px; text-align: right; } + +.legend-swatch { + display: inline-block; + width: 10px; + height: 10px; + border-radius: 2px; +} +.legend-swatch--ok { background-color: rgb(var(--v-theme-success)); } +.legend-swatch--bad { background-color: rgb(var(--v-theme-error)); }