diff --git a/packages/core/src/components/entry-editor/editor-control-pane/EditorControl.tsx b/packages/core/src/components/entry-editor/editor-control-pane/EditorControl.tsx index c7129db8..a616fc1d 100644 --- a/packages/core/src/components/entry-editor/editor-control-pane/EditorControl.tsx +++ b/packages/core/src/components/entry-editor/editor-control-pane/EditorControl.tsx @@ -220,7 +220,10 @@ const EditorControl = ({ path, query, t, - value: internalValue, + value: + field.widget === 'list' || field.widget === 'object' + ? finalStorageValue + : internalValue, forList, listItemPath, forSingleList,