Skip to content

Commit

Permalink
Merge branch 'master' into toanzian/acc-#1907
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano authored Nov 20, 2019
2 parents dfc9f7b + 99c46c8 commit cd4db18
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [1990](https://github.com/microsoft/BotFramework-Emulator/pull/1990)
- [1992](https://github.com/microsoft/BotFramework-Emulator/pull/1992)
- [1993](https://github.com/microsoft/BotFramework-Emulator/pull/1993)
- [1991](https://github.com/microsoft/BotFramework-Emulator/pull/1991)
- [1994](https://github.com/microsoft/BotFramework-Emulator/pull/1994)

## Removed
- [main] Removed unused `VersionManager` class in PR [1991](https://github.com/microsoft/BotFramework-Emulator/pull/1991)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,13 @@ export class EndpointEditor extends Component<EndpointEditorProps, EndpointEdito
Azure Bot Service configuration
<span role="presentation"></span>
</button>
<div id="abs-config-content" className={styles.absContent} ref={this.absContentRef} role="region">
<div
id="abs-config-content"
className={styles.absContent}
ref={this.absContentRef}
role="region"
aria-hidden={true}
>
<div>
<Row className={styles.absTextFieldRow}>
<TextField
Expand Down Expand Up @@ -307,6 +313,7 @@ export class EndpointEditor extends Component<EndpointEditorProps, EndpointEdito
const newHeight = expanded ? clientHeight : 0;
this.absContent.style.height = `${newHeight}px`;
currentTarget.setAttribute('aria-expanded', expanded + '');
this.absContent.setAttribute('aria-hidden', expanded ? 'false' : 'true');
this.absContent.querySelectorAll('input').forEach((node: HTMLElement) => {
if (node.hasAttribute('tabIndex')) {
node.setAttribute('tabIndex', expanded ? '0' : '-1');
Expand Down
2 changes: 1 addition & 1 deletion packages/app/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"@types/ws": "^4.0.1",
"asar-integrity": "^0.2.4",
"babel-jest": "24.8.0",
"botbuilder": "^3.14.0",
"botbuilder": "^4.5.1",
"chalk": "^2.4.1",
"concurrently": "^3.5.1",
"cross-env": "^5.1.3",
Expand Down

0 comments on commit cd4db18

Please # to comment.