From ab8e8b62fccc48850021691c7ec5bd37f2dc811f Mon Sep 17 00:00:00 2001 From: Thibaut Date: Thu, 13 Aug 2020 10:33:37 +0200 Subject: [PATCH] Remove hidden property documentation (#620) hidden property has been totally removed. See https://github.com/home-assistant/core/pull/37041 --- docs/core/entity.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/core/entity.md b/docs/core/entity.md index a03de840..d770df78 100644 --- a/docs/core/entity.md +++ b/docs/core/entity.md @@ -117,7 +117,6 @@ The following properties are also available on entities. However, they are for a | Name | Type | Default | Description | | ------------------------------- | ------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | force_update | boolean | `False` | Write each update to the state machine, even if the data is the same. Example use: when you are directly reading the value from a connected sensor instead of a cache. Use with caution, will spam the state machine. | -| hidden | boolean | `False` | Indicate if the entity should not be shown on the frontend. Deprecated. Will be removed in 0.107.0 | | icon | icon | `None` | Icon to use in the frontend. Icons start with `mdi:` plus an [identifier](https://materialdesignicons.com/). You probably don't need this since Home Assistant already provides default icons for all devices. | | entity_registry_enabled_default | boolean | `True` | Indicate if the entity should be enabled or disabled when it is first added to the entity registry. |