Skip to content

Commit

Permalink
chore(ui): Replace empty Th with Td to fix accessibility issues (stac…
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrottimark committed Jul 26, 2023
1 parent 311680e commit 26c4c2a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ function CollectionsTable({
Collection
</Th>
<Th modifier="wrap">Description</Th>
<Th aria-label="Row actions" />
<Td />
</Tr>
</Thead>
<Tbody>{tableContent}</Tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ function IntegrationsTable({
</Th>
);
})}
<Th aria-label="Row actions" />
<Td />
</Tr>
</Thead>
<Tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function TableModal({
</Th>
);
})}
<Th aria-label="Row actions" />
<Td />
</Tr>
</Thead>
<Tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function VulnReportsPage() {
<HelpIconTh tooltip="The report that was last run by a schedule or an on-demand action including 'send report now' and 'generate a downloadable report'">
Last run
</HelpIconTh>
<Th />
<Td />
</Tr>
</Thead>
{reports.length === 0 && (
Expand Down

0 comments on commit 26c4c2a

Please sign in to comment.