Skip to content

Commit

Permalink
fix(ui5-popup): add role attribute to focus helper element (#10004)
Browse files Browse the repository at this point in the history
fixes: #9982
  • Loading branch information
LidiyaGeorgieva authored Oct 10, 2024
1 parent 464fc0e commit 82a95ce
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 @@ -14,7 +14,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 @@ -24,7 +24,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 82a95ce

Please sign in to comment.