diff --git a/web/app/components/workflow/run/node.tsx b/web/app/components/workflow/run/node.tsx index f4cbbb80ee..42acf8ef08 100644 --- a/web/app/components/workflow/run/node.tsx +++ b/web/app/components/workflow/run/node.tsx @@ -24,6 +24,7 @@ const NodePanel: FC = ({ nodeInfo, collapsed, collapseHandle }) => { return `${(time * 1000).toFixed(3)} ms` if (time > 60) return `${parseInt(Math.round(time / 60).toString())} m ${(time % 60).toFixed(3)} s` + return `${time.toFixed(3)} s` } const getTokenCount = (tokens: number) => {