Skip to content

Commit

Permalink
FIX: Task Contacts Table Tooltip Titles - only shown when hovering th…
Browse files Browse the repository at this point in the history
…e text, not the full cell
  • Loading branch information
aljawaid committed Jul 2, 2023
1 parent 3b9e926 commit 5b25cf3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Template/task/description.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,31 +39,31 @@
</a>
<?php endif ?>
</td>
<td class="contacts-table-value" title="">
<td class="contacts-table-value">
<?php foreach ($values as $array_key => $array_value): ?>
<?php if (current($values[$array_key]) && ($values[$array_key]['position'] == 1)): ?>
<?= $values[$array_key]['contact_item_value'] ?>
<span title="<?= $values[$array_key]['contact_item_value'] ?>"><?= $values[$array_key]['contact_item_value'] ?></span>
<?php endif ?>
<?php endforeach ?>
</td>
<td class="contacts-table-value" title="">
<td class="contacts-table-value">
<?php foreach ($values as $array_key => $array_value): ?>
<?php if (current($values[$array_key]) && ($values[$array_key]['position'] == 2)): ?>
<?= $values[$array_key]['contact_item_value'] ?>
<span title="<?= $values[$array_key]['contact_item_value'] ?>"><?= $values[$array_key]['contact_item_value'] ?></span>
<?php endif ?>
<?php endforeach ?>
</td>
<td class="contacts-table-value" title="">
<td class="contacts-table-value">
<?php foreach ($values as $array_key => $array_value): ?>
<?php if (current($values[$array_key]) && ($values[$array_key]['position'] == 3)): ?>
<?= $values[$array_key]['contact_item_value'] ?>
<span title="<?= $values[$array_key]['contact_item_value'] ?>"><?= $values[$array_key]['contact_item_value'] ?></span>
<?php endif ?>
<?php endforeach ?>
</td>
<td class="contacts-table-value" title="">
<td class="contacts-table-value">
<?php foreach ($values as $array_key => $array_value): ?>
<?php if (current($values[$array_key]) && ($values[$array_key]['position'] == 4)): ?>
<?= $values[$array_key]['contact_item_value'] ?>
<span title="<?= $values[$array_key]['contact_item_value'] ?>"><?= $values[$array_key]['contact_item_value'] ?></span>
<?php endif ?>
<?php endforeach ?>
</td>
Expand Down

0 comments on commit 5b25cf3

Please sign in to comment.