Merge pull request #1568 from jsit/fix/fix-dropdown-id-unique

fix(a11y): Fix non-unique ID attribute on re-used element
This commit is contained in:
SleeplessOne1917 2023-06-25 04:35:39 +00:00 committed by GitHub
commit 2381db2969
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -707,13 +707,16 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
data-tippy-content={I18NextService.i18n.t("more")}
data-bs-toggle="dropdown"
aria-expanded="false"
aria-controls="advancedButtonsDropdown"
aria-controls={`advancedButtonsDropdown${post.id}`}
aria-label={I18NextService.i18n.t("more")}
>
<Icon icon="more-vertical" inline />
</button>
<ul className="dropdown-menu" id="advancedButtonsDropdown">
<ul
className="dropdown-menu"
id={`advancedButtonsDropdown${post.id}`}
>
{!this.myPost ? (
<>
<li>{this.reportButton}</li>