diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-04-11 16:34:26 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-04-11 16:34:26 -0400 |
commit | 05b1cfd98cdad95d6f5702db6cf4b1dae9c83d5f (patch) | |
tree | 7b7a3d8cf2d172486a5f85ce4f36b249363ee1fa /app | |
parent | d3727e92a6000a01fb962e559f8e6b936def1fb9 (diff) |
Fix bug: tooltips for descriptions are not shown after a board refresh
Diffstat (limited to 'app')
-rw-r--r-- | app/Template/board/swimlane.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/board/swimlane.php b/app/Template/board/swimlane.php index 8bcd9542..c7bd8b5b 100644 --- a/app/Template/board/swimlane.php +++ b/app/Template/board/swimlane.php @@ -27,7 +27,7 @@ <?= $this->e($column['title']) ?> - <?php if (! empty($column['description'])): ?> + <?php if (! $not_editable && ! empty($column['description'])): ?> <span class="column-tooltip pull-right" title='<?= $this->e($this->markdown($column['description'])) ?>'> <i class="fa fa-info-circle"></i> </span> |