@eqproject/eqp-dynamic-module 2.4.19 → 2.4.20

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.
@@ -9300,10 +9300,11 @@ class AddFormFieldComponent {
9300
9300
  this.dialogQERef.close();
9301
9301
  }
9302
9302
  onExternalComponentOut(ev) {
9303
- if (ev.Behaviours.indexOf("send-out")) {
9303
+ console.log("event out on dynamic module", ev);
9304
+ if (ev.Behaviours.indexOf("send-out") != -1) {
9304
9305
  this.out.emit(ev);
9305
9306
  }
9306
- if (ev.Behaviours.indexOf("close-modal")) {
9307
+ if (ev.Behaviours.indexOf("close-modal") != -1) {
9307
9308
  this.closeQEModal();
9308
9309
  }
9309
9310
  }