diff --git a/apps/clkinfostopw/clkinfo.ts b/apps/clkinfostopw/clkinfo.ts index 6e5b072ad..05d160c30 100644 --- a/apps/clkinfostopw/clkinfo.ts +++ b/apps/clkinfostopw/clkinfo.ts @@ -41,7 +41,7 @@ if (mins < 60) return format === StopWatchFormat.HMS - ? `${pad2(mins)}m${pad2(seconds)}s` + ? `${mins.toFixed(0)}m${pad2(seconds)}s` : `${mins.toFixed(0)}:${pad2(seconds)}`; let hours = mins / 60;