Skip to content

Commit

Permalink
Fixes editing of already selected item for array of objects editor (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
jamakase authored Jan 20, 2022
1 parent 0e5f1a8 commit d3d4d20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const ArraySection: React.FC<{
onStartEdit={(index) =>
addUnfinishedFlow(path, {
id: index,
startValue: index < items.length ? items[index] : null,
startValue: index < items.length ? items : null,
})
}
onDone={() => removeUnfinishedFlow(path)}
Expand Down

0 comments on commit d3d4d20

Please sign in to comment.