Rollback breaks for non-string property values

This commit is contained in:
Kenn Jacobsen
2020-02-10 14:39:05 +01:00
committed by Sebastiaan Janssen
parent 50ab5ce79b
commit 7d0c5508da
@@ -130,8 +130,8 @@
}
// diff requires a string
property.value = property.value ? property.value : "";
oldProperty.value = oldProperty.value ? oldProperty.value : "";
property.value = property.value ? property.value + "" : "";
oldProperty.value = oldProperty.value ? oldProperty.value + "" : "";
var diffProperty = {
"alias": property.alias,