@trudb/tru-common-lib 0.2.64 → 0.2.66

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.
@@ -4650,7 +4650,7 @@ class TruValidatorFactory {
4650
4650
  let targetProperty = mergeData.get(context.propertyName);
4651
4651
  if (targetProperty) {
4652
4652
  var mergeValue = targetProperty.hid ? targetProperty.hid : targetProperty.value;
4653
- context.error = targetProperty.modifiedBy + ' changed ' + context.propertyName + ' to ' + mergeValue + '.';
4653
+ context.error = targetProperty.modifiedBy + ' changed ' + context.propertyName + ' to ' + mergeValue.toString().replace(/<[^>]*>/g, '') + '.';
4654
4654
  return false;
4655
4655
  }
4656
4656
  return true;