Labels |
Added:
?
|
Labels |
Added:
?
|
I would like to work on this issue. Can this issue be assigned to me? Thanks.
You don't need to ask for permission nor to be assigned to an issue. You can create a PR directly.
I am completely new to open source contribution. Thanks for informing.
@NikitaEmberi You are checking Joomla 3. This is a problem in Joomla 4
@NikitaEmberi The issue is that tbody-icon
should not be in td
but in a separate span
instead. Please find all instances to fix.
\administrator\components\com_contact\tmpl\contacts\modal.php
Before:
<td class="text-center tbody-icon">
<span class="<?php echo $iconStates[$this->escape($item->published)]; ?>" aria-hidden="true"></span>
</td>
After:
<td class="text-center">
<span class="tbody-icon">
<span class="<?php echo $iconStates[$this->escape($item->published)]; ?>" aria-hidden="true"></span>
</span>
</td>
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2021-03-20 14:05:54 |
Closed_By | ⇒ | Quy |
@NikitaEmberi There are more like this. Please do a find and fix. Thanks.
@NikitaEmberi The procedure is to close the issue when there is a PR for it.
Its coming from the tbody-icon class
joomla-cms/administrator/templates/atum/scss/blocks/_icons.scss
Lines 7 to 11 in 83d1e49