Skip to content

Commit

Permalink
fix(ui5-popup): add role attribute to focus helper element (#10044)
Browse files Browse the repository at this point in the history
Fixes: #9982
  • Loading branch information
LidiyaGeorgieva authored Oct 22, 2024
1 parent 57fe788 commit e8b1c2a
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 e8b1c2a

Please sign in to comment.