From 6db2e1875a7ee40403b5d3d73de885c703eaf320 Mon Sep 17 00:00:00 2001 From: michel Date: Mon, 19 Feb 2024 09:22:46 +0100 Subject: [PATCH] added change from #12092 without the value type checks --- docs/data/data-grid/custom-columns/EditingWithDatePickers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/data-grid/custom-columns/EditingWithDatePickers.tsx b/docs/data/data-grid/custom-columns/EditingWithDatePickers.tsx index 647f06ded3c9..d935c6e716bb 100644 --- a/docs/data/data-grid/custom-columns/EditingWithDatePickers.tsx +++ b/docs/data/data-grid/custom-columns/EditingWithDatePickers.tsx @@ -187,7 +187,7 @@ const GridEditDateInput = styled(InputBase)({ }); function WrappedGridEditDateInput(props: TextFieldProps) { - const { InputProps, ...other } = props; + const { InputProps, focused, ...other } = props; return ( );