@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.
@@ -9327,10 +9327,11 @@ class AddFormFieldComponent {
9327
9327
  this.dialogQERef.close();
9328
9328
  }
9329
9329
  onExternalComponentOut(ev) {
9330
- if (ev.Behaviours.indexOf("send-out")) {
9330
+ console.log("event out on dynamic module", ev);
9331
+ if (ev.Behaviours.indexOf("send-out") != -1) {
9331
9332
  this.out.emit(ev);
9332
9333
  }
9333
- if (ev.Behaviours.indexOf("close-modal")) {
9334
+ if (ev.Behaviours.indexOf("close-modal") != -1) {
9334
9335
  this.closeQEModal();
9335
9336
  }
9336
9337
  }