From 779a5fc46ccd143f3280548389837a38e03a4d4d Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 27 Aug 2017 23:16:41 +0300 Subject: [PATCH] Don't truncate task description in reports --- app/Ninja/Reports/TaskReport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Ninja/Reports/TaskReport.php b/app/Ninja/Reports/TaskReport.php index 29d83e1486f3..6c7e7153c07e 100644 --- a/app/Ninja/Reports/TaskReport.php +++ b/app/Ninja/Reports/TaskReport.php @@ -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()), ]; }