@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.umd.js
CHANGED
|
@@ -3824,6 +3824,8 @@
|
|
|
3824
3824
|
return resultCollection;
|
|
3825
3825
|
}
|
|
3826
3826
|
function mergePropertyOrBuilder(target, source) {
|
|
3827
|
+
if (!source) return target;
|
|
3828
|
+
if (!target) return source;
|
|
3827
3829
|
if (isPropertyBuilder(source)) {
|
|
3828
3830
|
return source;
|
|
3829
3831
|
} else if (isPropertyBuilder(target)) {
|