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
_logger.Debug<BlockEditorValueConnector>("Mapped {Key} value '{PropertyValue}' to '{ParsedValue}' using {PropertyValueConnectorType} for {PropertyType}.",key,block.PropertyValues[key],parsedValue,propertyValueConnector.GetType(),innerPropertyType.Alias);
117
+
// pass the value, property type and the dependencies collection to the connector to get a "artifact" value
_logger.Debug<BlockEditorValueConnector>("Mapped {Key} value '{PropertyValue}' to '{ParsedValue}' using {PropertyValueConnectorType} for {PropertyType}.",key,block.PropertyValues[key],parsedValue,propertyValueConnector.GetType(),innerPropertyType.Alias);
_logger.Debug<BlockEditorValueConnector>("Mapped {Key} value '{PropertyValue}' to '{ConvertedValue}' using {PropertyValueConnectorType} for {PropertyType}.",key,innerValue,convertedValue,propertyValueConnector.GetType(),innerPropertyType.Alias);
193
204
}
194
205
else
195
206
{
196
-
block.PropertyValues[key]=convertedValue;
207
+
block.PropertyValues[key]=innerValue;
208
+
_logger.Debug<BlockEditorValueConnector>("{Key} value was null. Setting value as null without conversion.",key);
197
209
}
198
-
_logger.Debug<BlockEditorValueConnector>("Mapped {Key} value '{PropertyValue}' to '{ConvertedValue}' using {PropertyValueConnectorType} for {PropertyType}.",key,innerValue,convertedValue,propertyValueConnector.GetType(),innerPropertyType.Alias);
199
-
}
200
-
else
201
-
{
202
-
block.PropertyValues[key]=innerValue;
203
-
_logger.Debug<BlockEditorValueConnector>("{Key} value was null. Setting value as null without conversion.",key);
0 commit comments