Fix property on ha-panel-lovelace

This commit is contained in:
Paulus Schoutsen 2019-03-19 14:02:15 -07:00
parent 49f90671fb
commit 89a8e3da36
2 changed files with 3 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class LovelacePanel extends LitElement {
@property() public narrow?: boolean;
public route?: Route;
@property() public route?: Route;
@property() private _columns?: number;
@ -38,7 +38,7 @@ class LovelacePanel extends LitElement {
@property() private _errorMsg?: string;
private lovelace?: Lovelace;
@property() private lovelace?: Lovelace;
private mqls?: MediaQueryList[];

View File

@ -66,6 +66,7 @@ export class HUIView extends LitElement {
constructor() {
super();
console.log("CONSTRUCT HUI-VIEW");
this._cards = [];
this._badges = [];
}