From 80997df36da4c69aa429248a0cea68f37aa92e9a Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 21 Mar 2026 12:44:02 -0500 Subject: [PATCH] show a spinner when not connected --- src/app/app.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/app.html b/src/app/app.html index 92e2776..f24d06d 100644 --- a/src/app/app.html +++ b/src/app/app.html @@ -34,9 +34,9 @@ } - @if (schemaService.schemasLoaded()) { -
-
+ @if (eventsService.status() === 'open' && schemaService.schemasLoaded()) { +
+
@@ -44,5 +44,9 @@
+ } @else { +
+ +
}