Skip to content

Commit

Permalink
Fixed a11y issue with SR narration of conversation toolbar.
Browse files Browse the repository at this point in the history
* fix position announcement

* Update changelog
  • Loading branch information
denscollo authored and tonyanziano committed Oct 22, 2019
1 parent 2717295 commit ffa96e8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -74,6 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [1927](https://github.com/microsoft/BotFramework-Emulator/pull/1927)
- [1933](https://github.com/microsoft/BotFramework-Emulator/pull/1933)
- [1934](https://github.com/microsoft/BotFramework-Emulator/pull/1934)
- [1935](https://github.com/microsoft/BotFramework-Emulator/pull/1935)

- [client] Fixed an issue with the transcripts path input inside of the resource settings dialog in PR [1836](https://github.com/microsoft/BotFramework-Emulator/pull/1836)
- [client] Implemented HTML app menu for Windows in PR [1893](https://github.com/microsoft/BotFramework-Emulator/pull/1893)
Expand Down
15 changes: 7 additions & 8 deletions packages/app/client/src/ui/editor/emulator/emulator.tsx
Expand Up @@ -305,14 +305,13 @@ export class Emulator extends React.Component<EmulatorProps, {}> {
onClick={this.onStartOverClick}
buttonRef={this.setRestartButtonRef}
/>
<div role="menuitem">
<button
className={`${styles.saveIcon} ${styles.toolbarIcon || ''}`}
onClick={this.onExportTranscriptClick}
>
Save transcript
</button>
</div>
<button
role={'menuitem'}
className={`${styles.saveIcon} ${styles.toolbarIcon || ''}`}
onClick={this.onExportTranscriptClick}
>
Save transcript
</button>
</>
)}
</ToolBar>
Expand Down
Expand Up @@ -93,7 +93,7 @@ export class SplitButton extends React.Component<SplitButtonProps, SplitButtonSt
>
<span>{defaultLabel}</span>
</button>
<div className={styles.separator} />
<div className={styles.separator} aria-hidden={'true'} />
<button
aria-label={defaultLabel}
className={styles.caretButton + expandedClass}
Expand Down

0 comments on commit ffa96e8

Please sign in to comment.