From 27e8797364a2591bb32758802b4231c95ea3f4db Mon Sep 17 00:00:00 2001 From: Yagami <976204163@qq.com> Date: Mon, 18 Jan 2021 09:34:21 +0800 Subject: [PATCH] * Finish task #9018. --- module/task/model.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/task/model.php b/module/task/model.php index 85a54feb54..58b153dbbe 100644 --- a/module/task/model.php +++ b/module/task/model.php @@ -2963,13 +2963,13 @@ class taskModel extends model $storyChanged ? print("{$this->lang->story->changed}") : print(" " . $this->processStatus('task', $task) . ""); break; case 'estimate': - echo round($task->estimate, 1); + echo round($task->estimate, 1) . ' ' . $this->lang->hourCommon; break; case 'consumed': - echo round($task->consumed, 1); + echo round($task->consumed, 1) . ' ' . $this->lang->hourCommon; break; case 'left': - echo round($task->left, 1); + echo round($task->left, 1) . ' ' . $this->lang->hourCommon; break; case 'progress': echo "{$task->progress}%";