mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-12-23 19:31:26 +00:00
fix(a11y): Add aria-controls for advanced button dropdown
This commit is contained in:
parent
fc1c4f3279
commit
fb2c9f7491
1 changed files with 2 additions and 1 deletions
|
@ -691,12 +691,13 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||||
data-tippy-content={i18n.t("more")}
|
data-tippy-content={i18n.t("more")}
|
||||||
data-bs-toggle="dropdown"
|
data-bs-toggle="dropdown"
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
|
aria-controls="advancedButtonsDropdown"
|
||||||
aria-label={i18n.t("more")}
|
aria-label={i18n.t("more")}
|
||||||
>
|
>
|
||||||
<Icon icon="more-vertical" inline />
|
<Icon icon="more-vertical" inline />
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<ul className="dropdown-menu">
|
<ul className="dropdown-menu" id="advancedButtonsDropdown">
|
||||||
{!this.myPost ? (
|
{!this.myPost ? (
|
||||||
<>
|
<>
|
||||||
<li>{this.reportButton}</li>
|
<li>{this.reportButton}</li>
|
||||||
|
|
Loading…
Reference in a new issue