1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-24 04:39:01 +00:00

Fix incorrect logbook entity filters (#27037)

* Fix incorrect logbook filters

* Update src/panels/lovelace/editor/config-elements/hui-logbook-card-editor.ts

---------

Co-authored-by: Petar Petrov <MindFreeze@users.noreply.github.com>
This commit is contained in:
karwosts
2025-09-15 01:06:03 -07:00
committed by GitHub
parent 68c1a38231
commit f71d8f4367
4 changed files with 51 additions and 11 deletions

View File

@@ -116,7 +116,8 @@ export const computeShowLogBookComponent = (
const domain = computeDomain(entityId);
if (
(CONTINUOUS_DOMAINS.includes(domain) &&
CONTINUOUS_DOMAINS.includes(domain) ||
(domain === "sensor" &&
isNumericEntity(
domain,
stateObj,