Skip to content

Commit

Permalink
Fixed an accessibility issue with the recent bots list remove button (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano authored Mar 5, 2020
1 parent 81cd3a9 commit cb4d18f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [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)
- [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)
- [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)
- [client] Fixed an accessibility issue with the recent bots list remove button in PR [2091](https://github.com/microsoft/BotFramework-Emulator/pull/2091)


## Removed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class RecentBotsList extends Component<RecentBotsListProps, {}> {
{bot.path}
</TruncateText>
<div className={styles.recentBotActionBar}>
<button data-index={index} onClick={this.onDeleteBotClick}>
<button data-index={index} onClick={this.onDeleteBotClick} aria-label={'Remove bot'}>
<span />
</button>
</div>
Expand Down

0 comments on commit cb4d18f

Please sign in to comment.