From dec53b4630a1d81fed969f2cabd9bd20d6128671 Mon Sep 17 00:00:00 2001 From: Tom Bloor Date: Tue, 19 Sep 2017 11:10:56 +0100 Subject: [PATCH] Fix linter errors in full-layout --- src/app/layouts/full-layout.component.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/app/layouts/full-layout.component.ts b/src/app/layouts/full-layout.component.ts index 7007e35..af6b9bf 100644 --- a/src/app/layouts/full-layout.component.ts +++ b/src/app/layouts/full-layout.component.ts @@ -7,16 +7,15 @@ import { Router } from '@angular/router'; templateUrl: './full-layout.component.html', }) export class FullLayoutComponent implements OnInit { - displayName: any; + public displayName: string; + public disabled = false; + public status: {isopen: boolean} = {isopen: false}; constructor( private api: ApiService, private router: Router, ) {} - public disabled = false; - public status: {isopen: boolean} = {isopen: false}; - public toggled(open: boolean): void { console.log('Dropdown is now: ', open); }