@magic-xpa/angular 4.800.0-dev480.203 → 4.800.0-dev480.204

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.
@@ -3059,7 +3059,8 @@
3059
3059
  RowMagicDirective.prototype.onClick = function ($event) {
3060
3060
  if (this.rowId != '') {
3061
3061
  this._task.insertEvent(engine.getGuiEventObj('click', "magicRow", +this.rowId));
3062
- event.cancelBubble = true;
3062
+ if (!MagicDirective.opened)
3063
+ event.cancelBubble = true;
3063
3064
  }
3064
3065
  };
3065
3066
  return RowMagicDirective;