Fix picture-glance card icon styling for unavailable/unknown entities (#26352)

This commit is contained in:
Squazel 2025-08-04 16:16:11 +10:00 committed by GitHub
parent 5ea8feb86b
commit 05f4419a92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,7 +30,14 @@ import type {
} from "./types";
import type { PersonEntity } from "../../../data/person";
const STATES_OFF = new Set(["closed", "locked", "not_home", "off"]);
const STATES_OFF = new Set([
"closed",
"locked",
"not_home",
"off",
"unavailable",
"unknown",
]);
@customElement("hui-picture-glance-card")
class HuiPictureGlanceCard extends LitElement implements LovelaceCard {