oak-domain 1.1.11 → 1.1.12

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.
@@ -60,7 +60,7 @@ var CascadeStore = /** @class */ (function (_super) {
60
60
  };
61
61
  CascadeStore.prototype.reduceDescendants = function (entity, rows) {
62
62
  var _this = this;
63
- return rows.map(function (row) {
63
+ return rows.filter(function (ele) { return !!ele; }).map(function (row) {
64
64
  var _a;
65
65
  var row2 = {};
66
66
  for (var attr in row) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oak-domain",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
4
4
  "author": {
5
5
  "name": "XuChang"
6
6
  },