Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Maja Grubic committed Mar 2, 2020
1 parent 59fd20f commit 919221b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ class ListControlUi extends PureComponent<ListControlUiProps, ListControlUiState

componentDidMount = () => {
if (this.textInput) {
// remove when #59039 is fixed
this.textInput.setAttribute('focusable', 'false');
this.textInput.setAttribute('focusable', 'false'); // remove when #59039 is fixed
}
this.isMounted = true;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class ValidatedDualRange extends Component {
fullWidth={fullWidth}
value={this.state.value}
onChange={this._onChange}
focusable={false}
focusable={false} // remove when #59039 is fixed
{...rest}
/>
</EuiFormRow>
Expand Down

0 comments on commit 919221b

Please sign in to comment.