mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
Minor frontend bugfixes
This commit is contained in:
parent
18f27d2e45
commit
b0a09f01cc
@ -48,7 +48,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
eventStoreChanged: function(eventStore) {
|
eventStoreChanged: function(eventStore) {
|
||||||
this.events = eventStore.all;
|
this.events = eventStore.all.toArray();
|
||||||
},
|
},
|
||||||
|
|
||||||
handleClick: function(ev) {
|
handleClick: function(ev) {
|
||||||
|
@ -37,9 +37,7 @@
|
|||||||
<template repeat="{{domain in domains}}">
|
<template repeat="{{domain in domains}}">
|
||||||
<core-submenu icon="{{domain | getIcon}}" label="{{domain}}">
|
<core-submenu icon="{{domain | getIcon}}" label="{{domain}}">
|
||||||
<template repeat="{{service in domain | getServices}}">
|
<template repeat="{{service in domain | getServices}}">
|
||||||
<a on-click={{serviceClicked}} data-domain={{domain}}>
|
<a on-click={{serviceClicked}} data-domain={{domain}}>{{service}}</a>
|
||||||
{{service}}
|
|
||||||
</a>
|
|
||||||
</template>
|
</template>
|
||||||
</core-submenu>
|
</core-submenu>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user