| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1400,9 +1400,9 @@ export class StylePropertyChangedHandler { | |||
| 1400 | 1400 | } | |
| 1401 | 1401 | ||
| 1402 | 1402 | if (application.android) { | |
| 1403 | - newValue = newValue.android ? newValue.android : newValue; | ||
| 1403 | + newValue = types.isDefined(newValue.android) ? newValue.android : newValue; | ||
| 1404 | 1404 | } else if (application.ios) { | |
| 1405 | - newValue = newValue.ios ? newValue.ios : newValue; | ||
| 1405 | + newValue = types.isDefined(newValue.ios) ? newValue.ios : newValue; | ||
| 1406 | 1406 | } | |
| 1407 | 1407 | ||
| 1408 | 1408 | this._applyProperty(view, newValue, _defaultNativeValuesCache[className + property.id]); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments