Skip to content

Commit

Permalink
fix(ui5-popup): add role attribute to focus helper element
Browse files Browse the repository at this point in the history
fixes #9982
downport of 10004
  • Loading branch information
LidiyaGeorgieva committed Oct 18, 2024
1 parent c0c90b2 commit bae057a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/main/src/Popup.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@mousedown={{_onmousedown}}
>

<span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin={{forwardToLast}}></span>
<span class="first-fe" data-ui5-focus-trap role="none" tabindex="0" @focusin={{forwardToLast}}></span>

{{> beforeContent}}

Expand All @@ -21,7 +21,7 @@

{{> afterContent}}

<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin={{forwardToFirst}}></span>
<span class="last-fe" data-ui5-focus-trap role="none" tabindex="0" @focusin={{forwardToFirst}}></span>

</section>

Expand Down

0 comments on commit bae057a

Please sign in to comment.