mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-30 20:56:36 +00:00
commit
d0d293fe21
@ -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) => ({
|
||||
|
2
setup.py
2
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",
|
||||
|
@ -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[];
|
||||
|
||||
|
@ -66,6 +66,7 @@ export class HUIView extends LitElement {
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
console.log("CONSTRUCT HUI-VIEW");
|
||||
this._cards = [];
|
||||
this._badges = [];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user