Skip to content

Commit

Permalink
[DataGrid] Fix dev warning about InputLabelProps (#10413)
Browse files Browse the repository at this point in the history
  • Loading branch information
romgrk authored Sep 20, 2023
1 parent 82d44ea commit 8d8e8be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ function GridFilterInputBoolean(props: GridFilterInputBooleanProps) {
clearButton,
tabIndex,
label: labelProp,
InputLabelProps,
...others
} = props;
const [filterValueState, setFilterValueState] = React.useState(item.value || '');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ function GridFilterInputSingleSelect(props: GridFilterInputSingleSelectProps) {
label: labelProp,
isFilterActive,
clearButton,
InputLabelProps,
...others
} = props;
const [filterValueState, setFilterValueState] = React.useState(item.value ?? '');
Expand Down

0 comments on commit 8d8e8be

Please sign in to comment.