From b619371441eb3a0577414db05fb0c7fd25580f8d Mon Sep 17 00:00:00 2001 From: dirwin31 <83434411+dirwin31@users.noreply.github.com> Date: Thu, 27 Aug 2026 11:56:58 -0700 Subject: [PATCH] Bug Fix --- .../components/recordings/dashcam_routes.js | 43 ++++++++----------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/starpilot/system/the_galaxy/assets/components/recordings/dashcam_routes.js b/starpilot/system/the_galaxy/assets/components/recordings/dashcam_routes.js index 652ef4459..42abb0020 100644 --- a/starpilot/system/the_galaxy/assets/components/recordings/dashcam_routes.js +++ b/starpilot/system/the_galaxy/assets/components/recordings/dashcam_routes.js @@ -468,26 +468,21 @@ export function RouteRecordings() { return html`
- ${() => { - const stats = computeRouteStats(state.routes) - return html` -
-
-

Local recordings

-

Dashcam Routes

-
- ${stats.count} ${stats.count === 1 ? "drive" : "drives"} - ${stats.formattedDuration} total - ${stats.preservedCount > 0 ? html` ${stats.preservedCount} preserved` : ""} -
-
-
- -
-
` - }} +
+
+

Local recordings

+

Dashcam Routes

+ ${() => { + const stats = computeRouteStats(state.routes) + return html`
${stats.count} ${stats.count === 1 ? "drive" : "drives"} ${stats.formattedDuration} total${stats.preservedCount > 0 ? html` ${stats.preservedCount} preserved` : ""}
` + }} +
+
+ +
+
- -
@@ -515,10 +510,10 @@ export function RouteRecordings() {
- -