diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-02-19 18:27:57 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-02-19 18:27:57 -0500 |
commit | a43f71dda953ab1ca130af875b221569e4767f05 (patch) | |
tree | 33d6f7e650110bbdc5e7bf415b3f5da7735e74d6 /app/Template/task_list/task_title.php | |
parent | b5c56d4239c1f4e5c1b7894803c899b595797a26 (diff) |
Redesign project list view
Diffstat (limited to 'app/Template/task_list/task_title.php')
-rw-r--r-- | app/Template/task_list/task_title.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/task_list/task_title.php b/app/Template/task_list/task_title.php index 5e9c7284..028e9b70 100644 --- a/app/Template/task_list/task_title.php +++ b/app/Template/task_list/task_title.php @@ -5,7 +5,7 @@ <strong><?= '#'.$task['id'] ?></strong> <?php endif ?> - <span class="task-list-title <?= $task['is_active'] == 0 ? 'task-closed' : '' ?>"> + <span class="table-list-title <?= $task['is_active'] == 0 ? 'status-closed' : '' ?>"> <?= $this->url->link($this->text->e($task['title']), 'TaskViewController', 'show', array('project_id' => $task['project_id'], 'task_id' => $task['id'])) ?> </span> </div> |