fix(a11y): Add aria-label to fetaured pins

This commit is contained in:
Jay Sitter 2023-06-17 13:08:56 -04:00
parent 7c51837688
commit ec1d3726ed
1 changed files with 4 additions and 2 deletions

View File

@ -582,7 +582,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
{post.featured_community && ( {post.featured_community && (
<small <small
className="unselectable pointer ml-2 text-muted font-italic" className="unselectable pointer ml-2 text-muted font-italic"
data-tippy-content={i18n.t("featured")} aria-label={i18n.t("featured_in_community")}
data-tippy-content={i18n.t("featured_in_community")}
> >
<Icon icon="pin" classes="icon-inline text-primary" /> <Icon icon="pin" classes="icon-inline text-primary" />
</small> </small>
@ -590,7 +591,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
{post.featured_local && ( {post.featured_local && (
<small <small
className="unselectable pointer ml-2 text-muted font-italic" className="unselectable pointer ml-2 text-muted font-italic"
data-tippy-content={i18n.t("featured")} aria-label={i18n.t("featured_in_local")}
data-tippy-content={i18n.t("featured_in_local")}
> >
<Icon icon="pin" classes="icon-inline text-secondary" /> <Icon icon="pin" classes="icon-inline text-secondary" />
</small> </small>