Removed space before svalue

This commit is contained in:
Jason Woods
2017-04-27 16:13:41 -06:00
committed by GitHub
parent 850e354b11
commit f737004544

View File

@@ -213,7 +213,7 @@ namespace Umbraco.Web.PropertyEditors
.GetPreValuesByDataTypeId(property.PropertyType.DataTypeDefinitionId).FirstOrDefault();
var crops = string.IsNullOrWhiteSpace(config) ? "[]" : config;
src = svalue;
property.Value = "{\"src\": \" " + svalue + " \", \"crops\": " + crops + "}";
property.Value = "{\"src\": \"" + svalue + "\", \"crops\": " + crops + "}";
}
else
{