Skip to content

Commit

Permalink
Visually hide 'Actions' column header
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskoster committed May 16, 2024
1 parent 15a6f89 commit d131ab7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/dataviews/src/view-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
privateApis as componentsPrivateApis,
CheckboxControl,
Spinner,
VisuallyHidden,
} from '@wordpress/components';
import {
forwardRef,
Expand Down Expand Up @@ -490,7 +491,9 @@ function ViewTable( {
className="dataviews-view-table__actions-column"
>
<span className="dataviews-view-table-header">
{ __( 'Actions' ) }
<VisuallyHidden>
{ __( 'Actions' ) }
</VisuallyHidden>
</span>
</th>
) }
Expand Down

0 comments on commit d131ab7

Please sign in to comment.