Skip to content

Commit

Permalink
[docs] cherry pick of #12092 (#12126)
Browse files Browse the repository at this point in the history
  • Loading branch information
michelengelen committed Feb 19, 2024
1 parent 62cd689 commit 48556d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -173,7 +173,7 @@ const GridEditDateInput = styled(InputBase)({
});

function WrappedGridEditDateInput(props) {
const { InputProps, ...other } = props;
const { InputProps, focused, ...other } = props;
return <GridEditDateInput fullWidth {...InputProps} {...other} />;
}

Expand Down
Expand Up @@ -187,7 +187,7 @@ const GridEditDateInput = styled(InputBase)({
});

function WrappedGridEditDateInput(props: TextFieldProps) {
const { InputProps, ...other } = props;
const { InputProps, focused, ...other } = props;
return (
<GridEditDateInput fullWidth {...InputProps} {...(other as InputBaseProps)} />
);
Expand Down

0 comments on commit 48556d0

Please sign in to comment.