Skip to content

Commit

Permalink
Merge 0db801d into b979700
Browse files Browse the repository at this point in the history
  • Loading branch information
corinagum committed Sep 13, 2019
2 parents b979700 + 0db801d commit a0afec9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -52,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [1861](https://github.com/microsoft/BotFramework-Emulator/pull/1861)
- [1862](https://github.com/microsoft/BotFramework-Emulator/pull/1862)
- [1864](https://github.com/microsoft/BotFramework-Emulator/pull/1864)
- [1865](https://github.com/microsoft/BotFramework-Emulator/pull/1865)
- [1867](https://github.com/microsoft/BotFramework-Emulator/pull/1867)

- [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)
Expand Down
9 changes: 8 additions & 1 deletion packages/sdk/ui-react/src/widget/checkbox/checkbox.tsx
Expand Up @@ -90,7 +90,14 @@ export class Checkbox extends React.Component<CheckboxProps, CheckboxState> {
return (
<label id={this.checkboxId} className={`${styles.label} ${disabledClass} ${className}`} data-checked={checked}>
<span className={`${styles.checkMark} ${checkMarkStyles}`} />
<input type="checkbox" {...inputProps} className={styles.checkbox} ref={this.checkboxRef} readOnly={true} />
<input
aria-label={label}
type="checkbox"
{...inputProps}
className={styles.checkbox}
ref={this.checkboxRef}
readOnly={true}
/>
{label}
{this.props.children}
</label>
Expand Down

0 comments on commit a0afec9

Please sign in to comment.