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

Commit c77db89

Browse files
committed
Fixed an accessibility issue with the recent bots list remove button
1 parent 5ca8253 commit c77db89

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
@@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525
- [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)
2626
- [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)
2727
- [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)
28+
- [client] Fixed an accessibility issue with the recent bots list remove button in PR [2091](https://github.com/microsoft/BotFramework-Emulator/pull/2091)
2829

2930

3031
## 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)