Skip to content

Commit

Permalink
Correct table collapsed column titles
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelvickersuk committed Oct 6, 2020
1 parent af9aec8 commit 613bdd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/Template/board/table_column.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<!-- column in collapsed mode -->
<div class="board-column-collapsed">
<small class="board-column-header-task-count" title="<?= t('Show this column') ?>">
<span id="task-number-column-<?= $column['id'] ?>"><?= $column['nb_tasks'] ?></span>
<small class="board-column-header-task-count" title="<?= t('Task count') ?>">
<span id="task-number-column-<?= $column['id'] ?>"><span class="ui-helper-hidden-accessible"><?= t('Task count') ?> </span><?= $column['nb_tasks'] ?></span>
</small>
</div>

Expand Down
4 changes: 2 additions & 2 deletions app/Template/board/table_tasks.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ class="board-task-list board-column-expanded <?= $this->projectRole->isSortableC
data-swimlane-id="<?= $swimlane['id'] ?>"
data-task-limit="<?= $column['task_limit'] ?>">
<div class="board-rotation-wrapper">
<div class="board-column-title board-rotation board-toggle-column-view" data-column-id="<?= $column['id'] ?>" title="<?= t('Show this column') ?>">
<i class="fa fa-plus-square" title="<?= $this->text->e($column['title']) ?>" role="button" aria-label="<?= t('Show this column') ?>"></i> <?= $this->text->e($column['title']) ?>
<div class="board-column-title board-rotation board-toggle-column-view" data-column-id="<?= $column['id'] ?>" title="<?= $this->text->e($column['title']) ?>">
<i class="fa fa-plus-square" title="<?= t('Show this column') ?>" role="button" aria-label="<?= t('Show this column') ?>"></i> <?= $this->text->e($column['title']) ?>
</div>
</div>
</div>
Expand Down

0 comments on commit 613bdd8

Please sign in to comment.