Skip to content

Commit

Permalink
InputAction added props for keydown and focus.
Browse files Browse the repository at this point in the history
  • Loading branch information
emirhankudevi committed May 3, 2019
1 parent 51769cf commit bf54dac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/InputAction/InputAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,9 @@ class InputAction extends ComponentBase {
disabled={this.state.inputDisabled}
value={this.state.value}
onChange={this.onChange}
onFocus={this.onFocus}
onFocus={this.props.onFocus}
onBlur={this.onBlur}
onKeyDown={this.onKeyDown}
onKeyDown={this.props.onKeyDown}
prefixText={leftIcons.length ? leftIcons : null}
suffixText={rightIcons.length ? rightIcons : null}
/>
Expand Down

0 comments on commit bf54dac

Please sign in to comment.