Don't truncate task description in reports

This commit is contained in:
Hillel Coren 2017-08-27 23:16:41 +03:00
parent d771c1073c
commit 779a5fc46c

View File

@ -28,7 +28,7 @@ class TaskReport extends AbstractReport
$task->client ? ($this->isExport ? $task->client->getDisplayName() : $task->client->present()->link) : trans('texts.unassigned'),
link_to($task->present()->url, $task->getStartTime()),
$task->present()->project,
$task->present()->description,
$task->description,
Utils::formatTime($task->getDuration()),
];
}