@firecms/core 3.1.0-canary.8958c1b → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +2 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +9 -9
- package/src/util/join_collections.ts +10 -8
package/dist/index.es.js
CHANGED
|
@@ -3827,6 +3827,8 @@ function mergeCollection(target, source, parentPaths = [], modifyCollection) {
|
|
|
3827
3827
|
return resultCollection;
|
|
3828
3828
|
}
|
|
3829
3829
|
function mergePropertyOrBuilder(target, source) {
|
|
3830
|
+
if (!source) return target;
|
|
3831
|
+
if (!target) return source;
|
|
3830
3832
|
if (isPropertyBuilder(source)) {
|
|
3831
3833
|
return source;
|
|
3832
3834
|
} else if (isPropertyBuilder(target)) {
|