mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-26 10:46:35 +00:00
Fix area name in target picker (#15511)
This commit is contained in:
parent
bef586efb3
commit
e21816be52
@ -89,7 +89,7 @@ export class HaTargetPicker extends LitElement {
|
|||||||
<div class="mdc-chip-set items">
|
<div class="mdc-chip-set items">
|
||||||
${this.value?.area_id
|
${this.value?.area_id
|
||||||
? ensureArray(this.value.area_id).map((area_id) => {
|
? ensureArray(this.value.area_id).map((area_id) => {
|
||||||
const area = this.hass.devices![area_id];
|
const area = this.hass.areas![area_id];
|
||||||
return this._renderChip(
|
return this._renderChip(
|
||||||
"area_id",
|
"area_id",
|
||||||
area_id,
|
area_id,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user