Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.

Commit cb4d18f

Browse files
authored
Fixed an accessibility issue with the recent bots list remove button (#2091)
1 parent 81cd3a9 commit cb4d18f

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2626
- [client] Thrown errors in client-side sagas will now be logged in their entirety to the dev tools console in PR [2087](https://github.com/microsoft/BotFramework-Emulator/pull/2087)
2727
- [client] Upload and download attachments bubble texts and background in webchat were hidden. The adjustments have been made to override FileContent class in PR [2088](https://github.com/microsoft/BotFramework-Emulator/pull/2088)
2828
- [client] Fixed an issue that was causing adaptive card focus to be blurred when clicking on an activity in PR [2090](https://github.com/microsoft/BotFramework-Emulator/pull/2090)
29+
- [client] Fixed an accessibility issue with the recent bots list remove button in PR [2091](https://github.com/microsoft/BotFramework-Emulator/pull/2091)
2930

3031

3132
## Removed

packages/app/client/src/ui/editor/recentBotsList/recentBotsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class RecentBotsList extends Component<RecentBotsListProps, {}> {
6868
{bot.path}
6969
</TruncateText>
7070
<div className={styles.recentBotActionBar}>
71-
<button data-index={index} onClick={this.onDeleteBotClick}>
71+
<button data-index={index} onClick={this.onDeleteBotClick} aria-label={'Remove bot'}>
7272
<span />
7373
</button>
7474
</div>

0 commit comments

Comments
 (0)