You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found an issue on getRawValueFromConfig where the rawEntity has an entityAspect but it was a raw object (serialized from breeze client).
Maybe the check rawEntity.entityAspect || rawEntity.complexAspect should be typeof (rawEntity.getProperty) === "function" ???
function getRawValueFromConfig(rawEntity, dp) {
// 'true' fork can happen if an initializer contains an actaul instance of an already created complex object.
return (rawEntity.entityAspect || rawEntity.complexAspect) ? rawEntity.getProperty(dp.name) : rawEntity[dp.name];
}
The text was updated successfully, but these errors were encountered:
Hello all,
I found an issue on getRawValueFromConfig where the rawEntity has an entityAspect but it was a raw object (serialized from breeze client).
Maybe the check rawEntity.entityAspect || rawEntity.complexAspect should be typeof (rawEntity.getProperty) === "function" ???
function getRawValueFromConfig(rawEntity, dp) {
// 'true' fork can happen if an initializer contains an actaul instance of an already created complex object.
return (rawEntity.entityAspect || rawEntity.complexAspect) ? rawEntity.getProperty(dp.name) : rawEntity[dp.name];
}
The text was updated successfully, but these errors were encountered: