Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
fix: do not use cached value for list or object
Browse files Browse the repository at this point in the history
  • Loading branch information
KaneFreeman committed Oct 6, 2023
1 parent dcf2fc9 commit d29e3ac
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,10 @@ const EditorControl = ({
path,
query,
t,
value: internalValue,
value:
field.widget === 'list' || field.widget === 'object'
? finalStorageValue
: internalValue,
forList,
listItemPath,
forSingleList,
Expand Down

0 comments on commit d29e3ac

Please sign in to comment.