Skip to content

Commit

Permalink
pass onBLur
Browse files Browse the repository at this point in the history
  • Loading branch information
luacmartins committed Apr 25, 2022
1 parent 2e26c0f commit 0d71ee0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/DatePicker/index.android.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class DatePicker extends React.Component {
onPress={this.showPicker}
editable={false}
disabled={this.props.disabled}
onBlur={this.props.onBlur}
ref={(input) => {
if (!this.props.innerRef) {
return;
Expand Down
1 change: 1 addition & 0 deletions src/components/DatePicker/index.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ class Datepicker extends React.Component {
onPress={this.showPicker}
editable={false}
disabled={this.props.disabled}
onBlur={this.props.onBlur}
ref={(input) => {
if (!this.props.innerRef) {
return;
Expand Down
1 change: 1 addition & 0 deletions src/components/DatePicker/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ class Datepicker extends React.Component {
errorText={this.props.errorText}
containerStyles={this.props.containerStyles}
disabled={this.props.disabled}
onBlur={this.props.onBlur}
/>
);
}
Expand Down

0 comments on commit 0d71ee0

Please sign in to comment.