mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-01-15 20:51:57 +00:00
Fix type mismatch
This commit is contained in:
parent
5c0b1dbd1b
commit
eabd7d6c75
@ -10,7 +10,7 @@ import { config } from '../config';
|
|||||||
export class SidebarComponent {
|
export class SidebarComponent {
|
||||||
@Input() layout: string;
|
@Input() layout: string;
|
||||||
@Output() layoutChanged = new EventEmitter<string>();
|
@Output() layoutChanged = new EventEmitter<string>();
|
||||||
enabledLayouts: Set<string> = config.dashboard.enabledLayouts;
|
enabledLayouts: string[] = config.dashboard.enabledLayouts;
|
||||||
|
|
||||||
constructor() {}
|
constructor() {}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user