Merge pull request #4948 from home-assistant/dev

20200220.1
This commit is contained in:
Paulus Schoutsen 2020-02-20 14:49:22 -08:00 committed by GitHub
commit 3a90a65ba8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 10 deletions

View File

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

View File

@ -158,7 +158,6 @@ class HaSceneDashboard extends LitElement {
}
ha-card {
padding-bottom: 8px;
margin-bottom: 56px;
}
@ -169,6 +168,10 @@ class HaSceneDashboard extends LitElement {
padding: 0 8px 0 16px;
}
.scene > *:first-child {
margin-right: 8px;
}
.scene a[href] {
color: var(--primary-text-color);
}
@ -177,10 +180,6 @@ class HaSceneDashboard extends LitElement {
display: flex;
}
ha-entity-toggle {
margin-right: 16px;
}
ha-fab {
position: fixed;
bottom: 16px;

View File

@ -139,7 +139,6 @@ class HaScriptPicker extends LitElement {
}
ha-card {
padding-bottom: 8px;
margin-bottom: 56px;
}
@ -147,8 +146,7 @@ class HaScriptPicker extends LitElement {
display: flex;
flex-direction: horizontal;
align-items: center;
padding: 0 8px;
margin: 4px 0;
padding: 0 8px 0 16px;
}
.script > *:first-child {

View File

@ -191,7 +191,7 @@ export const getLovelaceElementClass = async <
const tag = `hui-${type}-${tagSuffix}`;
const cls = customElements.get(tag);
if (alwaysLoadTypes && type in alwaysLoadTypes) {
if (alwaysLoadTypes && alwaysLoadTypes.has(type)) {
return cls;
}