From 53ebb93edb57a4b20053bf709289dbda8aebbe44 Mon Sep 17 00:00:00 2001 From: fatalis Date: Fri, 12 Jun 2026 08:30:21 -0500 Subject: [PATCH] fix learning rate metric truncating to zero on graph (#877) --- ui/src/components/JobLossGraph.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/components/JobLossGraph.tsx b/ui/src/components/JobLossGraph.tsx index 23b65360..0cc7fbd1 100644 --- a/ui/src/components/JobLossGraph.tsx +++ b/ui/src/components/JobLossGraph.tsx @@ -312,6 +312,7 @@ export default function JobLossGraph({ job }: Props) { width: 2, spanGaps: false, points: { show: false }, + value: (_u, value) => formatNum(value), }); colArrays.push(smooth); @@ -324,6 +325,7 @@ export default function JobLossGraph({ job }: Props) { width: 2.5, spanGaps: false, points: { show: false }, + value: (_u, value) => formatNum(value), }); colArrays.push(fullSmooth); }