Bumped version to 20181210.1

This commit is contained in:
Paulus Schoutsen 2018-12-10 12:48:37 +01:00
parent 0899d42967
commit 7d2444868d
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name="home-assistant-frontend", name="home-assistant-frontend",
version="20181210.0", version="20181210.1",
description="The Home Assistant frontend", description="The Home Assistant frontend",
url="https://github.com/home-assistant/home-assistant-polymer", url="https://github.com/home-assistant/home-assistant-polymer",
author="The Home Assistant Authors", author="The Home Assistant Authors",

View File

@ -167,7 +167,7 @@ class LovelacePanel extends hassLocalizeLitMixin(LitElement) {
enableFullEditMode: () => { enableFullEditMode: () => {
if (!editorLoaded) { if (!editorLoaded) {
editorLoaded = true; editorLoaded = true;
import("./hui-editor"); import(/* webpackChunkName: "lovelace-yaml-editor" */ "./hui-editor");
} }
this._state = "yaml-editor"; this._state = "yaml-editor";
}, },