Description icon on collapse view

Is there a way to show description icon on collapse view like comment?
image

add this code:

        <?php if (! empty($task['description'])): ?>
            <?= $this->app->tooltipLink('<i class="fa fa-file-text-o"></i>', $this->url->href('BoardTooltipController', 'description', array('task_id' => $task['id'], 'project_id' => $task['project_id']))) ?>
        <?php endif ?>

between lines 34 and 35 of /Template/board/task_private.php

then restart your server and refresh your page.

1 Like