Manual trigger entity fix name influence entity_id (#97398)

This commit is contained in:
G Johansson 2023-07-30 18:47:34 +02:00 committed by GitHub
parent 2b4387f7c2
commit 1f11ce63fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 6 deletions

View file

@ -344,16 +344,15 @@ class SQLSensor(ManualTriggerEntity, SensorEntity):
self._attr_extra_state_attributes = {}
self._use_database_executor = use_database_executor
self._lambda_stmt = _generate_lambda_stmt(query)
self._attr_name = (
None if not yaml else trigger_entity_config[CONF_NAME].template
)
self._attr_has_entity_name = not yaml
if not yaml:
self._attr_name = None
self._attr_has_entity_name = True
if not yaml and trigger_entity_config.get(CONF_UNIQUE_ID):
self._attr_device_info = DeviceInfo(
entry_type=DeviceEntryType.SERVICE,
identifiers={(DOMAIN, trigger_entity_config[CONF_UNIQUE_ID])},
manufacturer="SQL",
name=trigger_entity_config[CONF_NAME].template,
name=self.name,
)
async def async_added_to_hass(self) -> None: