diff --git a/docs/Upgrade.md b/docs/Upgrade.md index e0b70100c12..7bf50a09db2 100644 --- a/docs/Upgrade.md +++ b/docs/Upgrade.md @@ -1793,6 +1793,28 @@ const PostCreate = () => ( ) ``` +### Field components must be wrapped with `` in `` + +Field components don't have a label by default anymore and must be wrapped with `` when used within a ``. + +```diff +const PostEdit = () => ( + + + +- +- +- ++ ++ ++ ++ ++ + + +) +``` + ### `` Does Not Accept the `TransitionProps` prop anymore Transitions were causing a lot of issues so we had to remove them for now, until we find a good solution.