We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2efc104 commit ddcedbdCopy full SHA for ddcedbd
1 file changed
packages/fiori/src/UserMenuTemplate.tsx
@@ -152,8 +152,10 @@ function otherAccountsList(this: UserMenu) {
152
{this._otherAccounts.map((account, index) =>
153
<ListItemCustom
154
ref={this.captureRef.bind(account)}
155
- aria-posinset={index + 1}
156
- aria-setsize={this._otherAccounts.length}
+ accessibilityAttributes={{
+ "ariaPosinset": index + 1,
157
+ "ariaSetsize": this._otherAccounts.length
158
+ }}
159
aria-label={account.titleText}
160
>
161
<div class="ui5-user-menu-other-accounts-content">
0 commit comments