mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-21 16:26:43 +00:00
Add missing em dash for non-disabled entities and devices (#11493)
This commit is contained in:
parent
8ce160b9ce
commit
ce99d14ee0
@ -338,7 +338,7 @@ export class HaConfigDeviceDashboard extends LitElement {
|
|||||||
${this.hass.localize("ui.panel.config.devices.disabled")}
|
${this.hass.localize("ui.panel.config.devices.disabled")}
|
||||||
</paper-tooltip>
|
</paper-tooltip>
|
||||||
</div>`
|
</div>`
|
||||||
: "",
|
: "—",
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return columns;
|
return columns;
|
||||||
|
@ -237,7 +237,9 @@ export class HaConfigEntities extends SubscribeMixin(LitElement) {
|
|||||||
template: (disabled_by) =>
|
template: (disabled_by) =>
|
||||||
this.hass.localize(
|
this.hass.localize(
|
||||||
`ui.panel.config.devices.disabled_by.${disabled_by}`
|
`ui.panel.config.devices.disabled_by.${disabled_by}`
|
||||||
) || disabled_by,
|
) ||
|
||||||
|
disabled_by ||
|
||||||
|
"—",
|
||||||
},
|
},
|
||||||
status: {
|
status: {
|
||||||
title: this.hass.localize(
|
title: this.hass.localize(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user