From 200449e41c16aa47a2f7a1b4f96e3d18a6ccdac0 Mon Sep 17 00:00:00 2001 From: Dominic Carretto Date: Fri, 14 Jul 2017 06:12:17 -0400 Subject: [PATCH] docs(demo): Fix lint issue with missing semi-colon --- src/demo-app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demo-app/app.component.ts b/src/demo-app/app.component.ts index adbfa0cf0..277a70d5f 100644 --- a/src/demo-app/app.component.ts +++ b/src/demo-app/app.component.ts @@ -18,6 +18,6 @@ export class AppComponent implements OnInit { if (event instanceof NavigationEnd) { window.scrollTo(0, 0); } - }) + }); } }