@seniorsistemas/angular-components 17.10.2 → 17.10.3

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.
@@ -15971,6 +15971,8 @@
15971
15971
  };
15972
15972
  KanbanColumnComponent.prototype._createTieredOptions = function () {
15973
15973
  var _this = this;
15974
+ if (!this.data.options)
15975
+ return;
15974
15976
  var options = [];
15975
15977
  this.data.options.forEach(function (option) {
15976
15978
  options.push(__assign(__assign({}, option), { command: function () { option.command(_this.data); } }));
@@ -16079,6 +16081,8 @@
16079
16081
  };
16080
16082
  KanbanItemComponent.prototype._createTieredOptions = function () {
16081
16083
  var _this = this;
16084
+ if (!this.item.options)
16085
+ return;
16082
16086
  var options = [];
16083
16087
  this.item.options.forEach(function (option) {
16084
16088
  options.push(__assign(__assign({}, option), { command: function () { option.command(_this.item); } }));