Skip to content

Commit

Permalink
storage: Shut up Patternfly
Browse files Browse the repository at this point in the history
  • Loading branch information
mvollmer committed May 15, 2024
1 parent 53d86bc commit 74a6d5f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkg/storaged/pages.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,13 @@ export const PageTable = ({ emptyCaption, aria_label, pages, crossrefs, sorted,
{ pages &&
<Thead>
<Tr>
{ show_icons && <Th aria-hidden="true" />}
{/* We want just aria-hidden, but we also
* need to specify aria-label to shut up
* Patternfly.
*
* See https://github.com/patternfly/patternfly/issues/6658
*/}
{ show_icons && <Th aria-hidden="true" aria-label="hidden" /> }
<Th scope="col">{_("ID")}</Th>
<Th scope="col">{_("Type")}</Th>
<Th scope="col">{_("Location")}</Th>
Expand Down

0 comments on commit 74a6d5f

Please sign in to comment.