diff --git a/tns-core-modules/ui/core/properties.ts b/tns-core-modules/ui/core/properties.ts index 131fab1bd..76b300966 100644 --- a/tns-core-modules/ui/core/properties.ts +++ b/tns-core-modules/ui/core/properties.ts @@ -117,13 +117,13 @@ export class Property implements PropertyDescriptor { delete this[defaultValueKey]; } } else { - this[key] = value; + this[key] = unboxedValue; if (setNativeValue) { if (!(defaultValueKey in this)) { this[defaultValueKey] = this[native]; } - this[native] = value; + this[native] = unboxedValue; } }