Compare commits

...

2 Commits

Author SHA1 Message Date
Paulus Schoutsen
97cd0f4a46 Bumped version to 20200130.2 2020-02-05 14:05:37 -08:00
Bram Kragten
602b368651 More info scroll fix (#4774)
* Fix more info dialog scrolling

* Update ha-more-info-dialog.js
2020-02-05 14:05:26 -08:00
2 changed files with 4 additions and 6 deletions

View File

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

View File

@ -80,7 +80,7 @@ class HaMoreInfoDialog extends DialogMixin(PolymerElement) {
class="no-padding"
hass="[[hass]]"
state-obj="[[stateObj]]"
dialog-element="[[_dialogElement]]"
dialog-element="[[_dialogElement()]]"
registry-entry="[[_registryInfo]]"
large="{{large}}"
></more-info-controls>
@ -102,7 +102,6 @@ class HaMoreInfoDialog extends DialogMixin(PolymerElement) {
observer: "_largeChanged",
},
_dialogElement: Object,
_registryInfo: Object,
dataDomain: {
@ -116,9 +115,8 @@ class HaMoreInfoDialog extends DialogMixin(PolymerElement) {
return ["_dialogOpenChanged(opened)"];
}
ready() {
super.ready();
this._dialogElement = this;
_dialogElement() {
return this;
}
_computeDomain(stateObj) {