Fix history current visit labels
All checks were successful
build-windows-exe / build (push) Successful in 1m5s

This commit is contained in:
messypy
2026-07-28 00:47:37 +09:00
parent 1b3d978137
commit 8e704980c1
2 changed files with 13 additions and 5 deletions

View File

@@ -3440,7 +3440,7 @@ func humanDurationLabel(started, ended time.Time, current bool) string {
}
d := ended.Sub(started)
if current {
return formatDurationShort(d) + " active"
return formatDurationShort(d)
}
return formatDurationShort(d)
}