Fix linter errors in full-layout
This commit is contained in:
parent
8807ba6cc9
commit
dec53b4630
1 changed files with 3 additions and 4 deletions
|
@ -7,16 +7,15 @@ import { Router } from '@angular/router';
|
||||||
templateUrl: './full-layout.component.html',
|
templateUrl: './full-layout.component.html',
|
||||||
})
|
})
|
||||||
export class FullLayoutComponent implements OnInit {
|
export class FullLayoutComponent implements OnInit {
|
||||||
displayName: any;
|
public displayName: string;
|
||||||
|
public disabled = false;
|
||||||
|
public status: {isopen: boolean} = {isopen: false};
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private api: ApiService,
|
private api: ApiService,
|
||||||
private router: Router,
|
private router: Router,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
public disabled = false;
|
|
||||||
public status: {isopen: boolean} = {isopen: false};
|
|
||||||
|
|
||||||
public toggled(open: boolean): void {
|
public toggled(open: boolean): void {
|
||||||
console.log('Dropdown is now: ', open);
|
console.log('Dropdown is now: ', open);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue