We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0862fd commit 35e52deCopy full SHA for 35e52de
src/components/ha-service-picker.ts
@@ -162,7 +162,9 @@ class HaServicePicker extends LitElement {
162
const description =
163
this.hass.localize(
164
`component.${domain}.services.${service}.description`
165
- ) || services[domain][service].description;
+ ) ||
166
+ services[domain][service].description ||
167
+ "";
168
169
items.push({
170
id: serviceId,
src/panels/config/automation/add-automation-element-dialog.ts
@@ -407,7 +407,9 @@ class DialogAddAutomationElement
407
description:
408
409
`component.${dmn}.services.${service}.description`
410
- ) || services[dmn][service]?.description,
411
+ services[dmn][service]?.description ||
412
+ "",
413
});
414
}
415
};
0 commit comments