From 84017091b076132f6495f1cffa807f9933d74a38 Mon Sep 17 00:00:00 2001 From: Martin Yankov Date: Mon, 15 Oct 2018 17:02:25 +0300 Subject: [PATCH] chore: fix animations e2e app layout import (#6415) --- e2e/animation/app/slide-in-effect/page.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/animation/app/slide-in-effect/page.ts b/e2e/animation/app/slide-in-effect/page.ts index 8b1957ebe..4a543f639 100644 --- a/e2e/animation/app/slide-in-effect/page.ts +++ b/e2e/animation/app/slide-in-effect/page.ts @@ -1,13 +1,13 @@ import { EventData, Page } from "tns-core-modules/ui/page"; import { View } from "tns-core-modules/ui/core/view"; -import { Layout } from "tns-core-modules/ui/layouts/layout"; +import { WrapLayout } from "tns-core-modules/ui/layouts/wrap-layout"; import { Image } from "tns-core-modules/ui/image"; -let wrapLayout: Layout; +let wrapLayout: WrapLayout; export function pageLoaded(args: EventData) { const page = args.object; - wrapLayout = page.getViewById("wrapLayout"); + wrapLayout = page.getViewById("wrapLayout"); } export function onAddItem(args: EventData) {