Add 'state' option for secondary entity info on Entities card (#26201)

* add 'state' option for secondary entity info on Entities card

* Use formatEntityState instead of computeStateDisplay
This commit is contained in:
Tommy Goode
2025-07-17 09:02:09 -05:00
committed by GitHub
parent a10dbb64f0
commit ec6666a4ea
4 changed files with 9 additions and 2 deletions

View File

@@ -146,7 +146,11 @@ export class HuiGenericEntityRow extends LitElement {
100
)}
%`
: nothing)}
: this.config.secondary_info === "state"
? html`${this.hass.formatEntityState(
stateObj
)}`
: nothing)}
</div>
`
: nothing}