You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has to do with a Pandas data frame converted to an HTML table. The top left table cell is marked up with a <th> but it's empty. Axe does not like empty th tags. The test failure goes away if you convert the <th> to a <td> but I'm not sure where the code lives that converts the Pandas data frame to an HTML table.
The text was updated successfully, but these errors were encountered:
Got it, thanks for the info. I will try to close this issue with a PR that suppresses this Axe error on that page. It seems to me like a pretty minor issue anyway. Definitely not needed for WCAG conformance.
This has to do with a Pandas data frame converted to an HTML table. The top left table cell is marked up with a
<th>
but it's empty. Axe does not like empty th tags. The test failure goes away if you convert the<th>
to a<td>
but I'm not sure where the code lives that converts the Pandas data frame to an HTML table.The text was updated successfully, but these errors were encountered: