diff --git a/CHANGELOG.md b/CHANGELOG.md index 53b5afe5a..0ea801bc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [1993](https://github.com/microsoft/BotFramework-Emulator/pull/1993) - [1994](https://github.com/microsoft/BotFramework-Emulator/pull/1994) - [1997](https://github.com/microsoft/BotFramework-Emulator/pull/1997) + - [1999](https://github.com/microsoft/BotFramework-Emulator/pull/1999) - [2000](https://github.com/microsoft/BotFramework-Emulator/pull/2000) - [main] Increased ngrok spawn timeout to 15 seconds to be more forgiving to slower networks in PR [1998](https://github.com/microsoft/BotFramework-Emulator/pull/1998) @@ -99,7 +100,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [1934](https://github.com/microsoft/BotFramework-Emulator/pull/1934) - [1935](https://github.com/microsoft/BotFramework-Emulator/pull/1935) - [1936](https://github.com/microsoft/BotFramework-Emulator/pull/1936) - + - [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) - [client/main] Migrated from Bing Speech API to Cognitive Services Speech API in PR [1878](https://github.com/microsoft/BotFramework-Emulator/pull/1878) diff --git a/packages/sdk/ui-react/src/widget/button/linkButton.tsx b/packages/sdk/ui-react/src/widget/button/linkButton.tsx index 6f1a6b839..a6dae7f75 100644 --- a/packages/sdk/ui-react/src/widget/button/linkButton.tsx +++ b/packages/sdk/ui-react/src/widget/button/linkButton.tsx @@ -64,6 +64,7 @@ export class LinkButton extends React.Component { className={className} ref={this.setButtonRef} role={linkRole ? 'link' : 'button'} + aria-hidden={this.props.disabled ? 'true' : undefined} > {text} {this.props.children} diff --git a/packages/sdk/ui-react/src/widget/button/primaryButton.tsx b/packages/sdk/ui-react/src/widget/button/primaryButton.tsx index 7a8840c7a..e47b07519 100644 --- a/packages/sdk/ui-react/src/widget/button/primaryButton.tsx +++ b/packages/sdk/ui-react/src/widget/button/primaryButton.tsx @@ -44,7 +44,12 @@ export class PrimaryButton extends React.Component { const { className: propsClassName = '', text, buttonRef, ...buttonProps } = this.props; const className = `${propsClassName} ${styles.button} ${styles.primaryButton}`; return ( -