diff --git a/config/webpack.js b/config/webpack.js index 452b8c913b..9c61f7fb84 100644 --- a/config/webpack.js +++ b/config/webpack.js @@ -27,6 +27,11 @@ module.exports.plugins = [ /@polymer\/font-roboto\/roboto\.js$/, path.resolve(__dirname, "../src/util/empty.js") ), + // Ignore mwc icons pointing at CDN. + new webpack.NormalModuleReplacementPlugin( + /@material\/mwc-icon\/mwc-icon-font\.js$/, + path.resolve(__dirname, "../src/util/empty.js") + ), ]; module.exports.optimization = (latestBuild) => ({ diff --git a/setup.py b/setup.py index 08f473b8ca..687b774685 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="home-assistant-frontend", - version="20190319.0", + version="20190319.1", description="The Home Assistant frontend", url="https://github.com/home-assistant/home-assistant-polymer", author="The Home Assistant Authors", diff --git a/src/panels/lovelace/ha-panel-lovelace.ts b/src/panels/lovelace/ha-panel-lovelace.ts index 2a7774d6ca..3633e09f4c 100644 --- a/src/panels/lovelace/ha-panel-lovelace.ts +++ b/src/panels/lovelace/ha-panel-lovelace.ts @@ -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[]; diff --git a/src/panels/lovelace/hui-view.ts b/src/panels/lovelace/hui-view.ts index bb70b8be06..1b798042d2 100644 --- a/src/panels/lovelace/hui-view.ts +++ b/src/panels/lovelace/hui-view.ts @@ -66,6 +66,7 @@ export class HUIView extends LitElement { constructor() { super(); + console.log("CONSTRUCT HUI-VIEW"); this._cards = []; this._badges = []; }