ps-toolkit-ui 1.11.86 → 1.11.87

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.
@@ -3221,7 +3221,7 @@
3221
3221
  return this.row.Data.Id ? this.table.rows.filter(function (x) { return x.Data.ParentId === _this.row.Data.Id; }) : [];
3222
3222
  };
3223
3223
  TableRowComponent.prototype.getStatuses = function () {
3224
- return this.row.Statuses.includes(exports.TableRowStatus.Unread) ? 'unread ' : '';
3224
+ return this.row.Statuses && this.row.Statuses.includes(exports.TableRowStatus.Unread) ? 'unread ' : '';
3225
3225
  };
3226
3226
  return TableRowComponent;
3227
3227
  }());