Skip to content

Commit

Permalink
storage: Give empty "Th" elements a aria-label attribute
Browse files Browse the repository at this point in the history
Same as 570ad74.
  • Loading branch information
mvollmer committed May 13, 2024
1 parent 570ad74 commit 79f0f13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/storaged/pages.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -710,12 +710,12 @@ export const PageTable = ({ emptyCaption, aria_label, pages, crossrefs, sorted,
{ pages &&
<Thead>
<Tr>
{ show_icons && <Th /> }
{ show_icons && <Th aria-label={_("Category")} />}
<Th>{_("ID")}</Th>
<Th>{_("Type")}</Th>
<Th>{_("Location")}</Th>
<Th className="storage-size-column-header">{_("Size")}</Th>
<Th />
<Th aria-label={_("Actions")} />
</Tr>
</Thead>
}
Expand Down

0 comments on commit 79f0f13

Please sign in to comment.