@eqproject/eqp-dynamic-module 2.7.2 → 2.7.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.
@@ -4426,7 +4426,7 @@ class DbgetterComponent {
4426
4426
  this.haveRelations = true;
4427
4427
  this.field.DataGetter.DataGetterValue.openedFields.filter(x => x.QueryPropertyValue.indexOf('!') != -1).forEach((fieldWithRelation) => {
4428
4428
  var fieldRelated = fieldWithRelation.QueryPropertyValue.replace("!", "");
4429
- fieldWithRelation.QueryPropertyValue = this.record[fieldRelated];
4429
+ fieldWithRelation.QueryPropertyValue = this.record[fieldRelated] != null ? this.record[fieldRelated] : '';
4430
4430
  });
4431
4431
  }
4432
4432
  }