From 0bfedcab044c1237b495312912b36c3c6fa2009a Mon Sep 17 00:00:00 2001 From: vakrilov Date: Wed, 26 Jun 2019 10:54:50 +0300 Subject: [PATCH] refactor: remove deprecated API usage --- nativescript-angular/view-util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nativescript-angular/view-util.ts b/nativescript-angular/view-util.ts index faeb62329..97a2f6ba3 100644 --- a/nativescript-angular/view-util.ts +++ b/nativescript-angular/view-util.ts @@ -365,7 +365,7 @@ export class ViewUtil { } if (XML_ATTRIBUTES.indexOf(attributeName) !== -1) { - view._applyXmlAttribute(attributeName, value); + view[attributeName] = value; return; }