1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Add back 'Logged' task filter

This commit is contained in:
Hillel Coren 2018-04-23 12:51:57 +03:00
parent 587601ce7d
commit f7d9d28ed0

View File

@ -261,10 +261,7 @@ class Task extends EntityModel
$statuses[$status->public_id] = $status->name;
}
if (! $taskStatues->count()) {
$statuses[TASK_STATUS_LOGGED] = trans('texts.logged');
}
$statuses[TASK_STATUS_LOGGED] = trans('texts.logged');
$statuses[TASK_STATUS_RUNNING] = trans('texts.running');
$statuses[TASK_STATUS_INVOICED] = trans('texts.invoiced');
$statuses[TASK_STATUS_PAID] = trans('texts.paid');