* [misc,done,3h] convert scientific counting into numbers.

This commit is contained in:
tianshujie
2025-02-11 11:30:35 +08:00
committed by 刘刚
parent bbff780d3d
commit ec43dda1ee
19 changed files with 54 additions and 24 deletions
+3 -3
View File
@@ -57,7 +57,7 @@ div
span
(
setClass('ml-2 font-bold'),
$task->estimate . ' ' . $lang->execution->workHourUnit
helper::formatHours($task->estimate) . ' ' . $lang->execution->workHourUnit
)
),
div
@@ -67,7 +67,7 @@ div
span
(
setClass('ml-2 font-bold'),
round($task->consumed, 2) . ' ' . $lang->execution->workHourUnit
helper::formatHours($task->consumed) . ' ' . $lang->execution->workHourUnit
)
),
div
@@ -77,7 +77,7 @@ div
span
(
setClass('ml-2 font-bold'),
$task->left . ' ' . $lang->execution->workHourUnit
helper::formatHours($task->left) . ' ' . $lang->execution->workHourUnit
)
),
div