Relative times: pad to minutes format
All checks were successful
CI / scan_ruby (push) Successful in 18s
CI / scan_js (push) Successful in 13s
CI / lint (push) Successful in 13s
CI / test (push) Successful in 39s

This commit is contained in:
sto 2025-06-26 10:56:09 +02:00
parent 1b34d10dee
commit 9862f0c74b

View File

@ -15,6 +15,6 @@ module ContestsHelper
elsif m > 0
return m.to_s + ":" + pad(s)
end
s.to_s
"0:" + pad(s)
end
end