Fix popup card in safari. Add IP to FKB sensor. Tweak keepalive function

This commit is contained in:
2020-10-28 10:33:09 +01:00
parent f9701052ba
commit 2528494809
5 changed files with 45 additions and 13 deletions

View File

@@ -25,15 +25,15 @@ export const BrowserModPopupsMixin = (C) => class extends C {
const d = data[ev.detail.entityId];
if(!d) return;
window.queueMicrotask(() => {
popUp(
d.title,
d.card,
d.large || false,
d.style
);
window.setTimeout(() => {
fireEvent("hass-more-info", {entityID: "."}, document.querySelector("home-assistant"));
popUp(
d.title,
d.card,
d.large || false,
d.style
);
});
}, 50);
}
do_popup(cfg) {