Skip to content

Commit

Permalink
Hide columns in mobile view (#42728)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quy authored Mar 1, 2024
1 parent 4e1e165 commit d72d639
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions administrator/components/com_cache/tmpl/cache/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@
<th scope="col" class="title">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_GROUP', 'group', $listDirn, $listOrder); ?>
</th>
<th scope="col" class="w-10 text-center">
<th scope="col" class="w-10 text-center d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_NUMBER_OF_FILES', 'count', $listDirn, $listOrder); ?>
</th>
<th scope="col" class="w-10 text-end">
<th scope="col" class="w-10 text-end d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_SIZE', 'size', $listDirn, $listOrder); ?>
</th>
</tr>
Expand All @@ -76,10 +76,10 @@
<th scope="row">
<?php echo $this->escape($item->group); ?>
</th>
<td class="text-center">
<td class="text-center d-none d-md-table-cell">
<?php echo $item->count; ?>
</td>
<td class="text-end">
<td class="text-end d-none d-md-table-cell">
<?php echo '&#x200E;' . HTMLHelper::_('number.bytes', $item->size); ?>
</td>
</tr>
Expand Down

0 comments on commit d72d639

Please sign in to comment.