@ronin/compiler 0.12.4-leo-ron-1071-experimental-256 → 0.12.5-leo-ron-1071-experimental-257
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -1656,9 +1656,9 @@ var Transaction = class {
|
|
1656
1656
|
}
|
1657
1657
|
}
|
1658
1658
|
if (isMeta && PLURAL_MODEL_ENTITIES_VALUES.includes(newSlug)) {
|
1659
|
-
newValue = Object.entries(newValue).map(([slug, attributes]) => {
|
1659
|
+
newValue = newValue ? Object.entries(newValue).map(([slug, attributes]) => {
|
1660
1660
|
return { slug, ...attributes };
|
1661
|
-
});
|
1661
|
+
}) : [];
|
1662
1662
|
}
|
1663
1663
|
records[usableRowIndex] = setProperty(
|
1664
1664
|
records[usableRowIndex],
|
package/package.json
CHANGED