HAVE YOU ALREADY SEARCHED FOR SIMILAR ISSUES? PLEASE HELP US OUT AND DOUBLE-CHECK FIRST!
ALSO, PLEASE DON'T BE THAT PERSON WHO DELETES THIS TEMPLATE. IT'S HERE FOR A REASON.
THANKS!
WHICH VERSION OF REACT ARE YOU USING?
Officially Supported:
[ ] v0.14.x
Community Supported:
[x ] v15.0.x
WHICH BROWSER ARE YOU USING?
Officially Supported:
[ ] IE 9 / IE 10 / IE 11
[ ] Edge
[x ] Chrome
Should work:
[ ] Firefox
[ ] Safari
I'm submitting a ... (check one with "x")
[x ] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/adazzle/react-data-grid/blob/master/CONTRIBUTING.md
Current behavior
Filter text box row is partially obscured by the data
Expected/desired behavior
Filter text box row is fully visible
Reproduction of the problem
If the current behavior is a bug or you can illustrate your feature request better with an example, please provide the steps to reproduce and if possible a minimal demo of the problem.

What is the expected behavior?
What is the motivation / use case for changing the behavior?
The workaround I'm using is to explicitly set the headerRowHeight and the headerFiltersHeight, ie
<ReactDataGrid
...
headerRowHeight={35}
headerFiltersHeight={45}
... />
Looks like this was fixed in 2.0.17, with #683 Thanks @joao-inacio :)
Most helpful comment
The workaround I'm using is to explicitly set the headerRowHeight and the headerFiltersHeight, ie