* Finish task #9018.

This commit is contained in:
Yagami
2021-01-18 09:34:21 +08:00
parent 8c6c006680
commit 27e8797364
+3 -3
View File
@@ -2963,13 +2963,13 @@ class taskModel extends model
$storyChanged ? print("<span class='status-story status-changed'>{$this->lang->story->changed}</span>") : print("<span class='status-task status-{$task->status}'> " . $this->processStatus('task', $task) . "</span>");
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}%";