diff --git a/custom_components/audi_dashboard/frontend/audi-dashboard-app.js b/custom_components/audi_dashboard/frontend/audi-dashboard-app.js
index 0e51238..8bf7cf1 100644
--- a/custom_components/audi_dashboard/frontend/audi-dashboard-app.js
+++ b/custom_components/audi_dashboard/frontend/audi-dashboard-app.js
@@ -3057,7 +3057,7 @@ function vTrip(id) {
Zielort${esc(t.end_address || "unbekannt")}
Startkilometer${t.odo_start != null ? de(t.odo_start) + " km" : "noch offen"}
Endkilometer${t.odo_end != null ? de(t.odo_end) + " km" : "noch offen"}
- Dauer${Math.round(t.duration_s / 60)} min
+ Dauer${dauerText(t.duration_s)}
Verbrauch${fahrtVerbrauch(t) != null ? de(fahrtVerbrauch(t), 1) + " l/100 km" : "liegt nicht vor"}vom Fahrzeug gemeldet
Status${t.status}Quelle: ${t.km_quelle || "–"}
diff --git a/custom_components/audi_dashboard/manifest.json b/custom_components/audi_dashboard/manifest.json
index e82d40b..3f1175e 100644
--- a/custom_components/audi_dashboard/manifest.json
+++ b/custom_components/audi_dashboard/manifest.json
@@ -1,7 +1,7 @@
{
"domain": "audi_dashboard",
"name": "Audi Dashboard",
- "version": "2026.8.24.14",
+ "version": "2026.8.24.15",
"documentation": "https://gitea.nothaft.cloud/paul/audi-app/src/branch/main/README.md",
"issue_tracker": "https://gitea.nothaft.cloud/paul/audi-app/issues",
"codeowners": ["@paul"],