Skip to content

Commit

Permalink
fix #1680
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed Oct 16, 2017
1 parent 2834df0 commit c272b97
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/filters/Date.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ DateFilter.propTypes = {
}
}
},
columnName: PropTypes.string
columnName: PropTypes.any
};

DateFilter.defaultProps = {
Expand Down
2 changes: 1 addition & 1 deletion src/filters/Number.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ NumberFilter.propTypes = {
}
},
placeholder: PropTypes.string,
columnName: PropTypes.string,
columnName: PropTypes.any,
withoutEmptyComparatorOption: PropTypes.bool,
withoutEmptyNumberOption: PropTypes.bool
};
Expand Down
2 changes: 1 addition & 1 deletion src/filters/Regex.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RegexFilter.propTypes = {
defaultValue: PropTypes.string,
delay: PropTypes.number,
placeholder: PropTypes.string,
columnName: PropTypes.string,
columnName: PropTypes.any,
style: PropTypes.oneOfType([ PropTypes.object ])
};

Expand Down
2 changes: 1 addition & 1 deletion src/filters/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ SelectFilter.propTypes = {
filterHandler: PropTypes.func.isRequired,
options: PropTypes.object.isRequired,
placeholder: PropTypes.string,
columnName: PropTypes.string,
columnName: PropTypes.any,
style: PropTypes.oneOfType([ PropTypes.object ])
};

Expand Down
2 changes: 1 addition & 1 deletion src/filters/Text.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ TextFilter.propTypes = {
defaultValue: PropTypes.string,
delay: PropTypes.number,
placeholder: PropTypes.string,
columnName: PropTypes.string,
columnName: PropTypes.any,
style: PropTypes.oneOfType([ PropTypes.object ])
};

Expand Down

0 comments on commit c272b97

Please sign in to comment.