Route page stats: format durations and latencies to user locale #65
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Avg Duration and P99 Latency values in RouteHeader and PerformanceTab are displayed as raw numbers (e.g.
312ms) without locale formatting. Other stats like Executions Today already usetoLocaleString().Expected
All numeric stat values should use
toLocaleString()for the user's locale — e.g.1,312msinstead of1312ms.Files
ui/src/pages/routes/RouteHeader.tsx— header stat boxesui/src/pages/routes/PerformanceTab.tsx— stat cardsClosing as stale — referenced files (
RouteHeader.tsx,PerformanceTab.tsx) no longer exist after route pages were rewritten. Locale formatting consistency is tracked more broadly in #110.