From 03d1ff03994bdd469faa810aea115a7d411f4767 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Morten=20Sj=C3=B8gren?= Date: Tue, 10 Sep 2019 13:12:04 +0200 Subject: [PATCH] fix(css-calc): reduce_css_calc_1.default is not a function (#7787) --- tns-core-modules/ui/core/properties/properties.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tns-core-modules/ui/core/properties/properties.ts b/tns-core-modules/ui/core/properties/properties.ts index b79a611fb..527d100bc 100644 --- a/tns-core-modules/ui/core/properties/properties.ts +++ b/tns-core-modules/ui/core/properties/properties.ts @@ -1,4 +1,4 @@ -import reduceCSSCalc from "reduce-css-calc"; +import * as reduceCSSCalc from "reduce-css-calc"; // Definitions. import * as definitions from "../view-base";