Skip to content

Commit

Permalink
fix: common.nest() discarding custom components (jquense#1114)
Browse files Browse the repository at this point in the history
  • Loading branch information
bs85 authored and jquense committed Nov 16, 2018
1 parent 0e1e1a0 commit 5a432de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/addons/dragAndDrop/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const mergeComponents = (components = {}, addons) => {
const result = { ...components }

keys.forEach(key => {
result[key] = components[key] ? nest(addons[key]) : addons[key]
result[key] = components[key] ? nest(components[key], addons[key]) : addons[key]
})
return result
}

0 comments on commit 5a432de

Please sign in to comment.