Rollback breaks for non-string property values
This commit is contained in:
committed by
Sebastiaan Janssen
parent
50ab5ce79b
commit
7d0c5508da
+2
-2
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user