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() {
- -