diff --git a/source/_integrations/application_credentials.markdown b/source/_integrations/application_credentials.markdown index 03b1d4ba648..7c6d32d1833 100644 --- a/source/_integrations/application_credentials.markdown +++ b/source/_integrations/application_credentials.markdown @@ -16,7 +16,9 @@ The Application Credentials integration is used by integrations that use OAuth2 Some integrations like [Google Calendar](/integrations/google/) will automatically create application credentials as part of adding an integration. To view any entries: 1. Go to **{% my integrations title="Settings -> Devices & Services" %}** -2. Click the overflow menu **...** and choose **Application Credentials** +2. Click the overflow menu on the top right **...** and choose **Application Credentials** + +![Devices and services overflow menu](/images/integrations/application_credentials/devices-and-services-menu.png) ![Application credential list](/images/integrations/application_credentials/application-credentials.png) @@ -27,7 +29,7 @@ when setting up for the first time. You may also manually enter credentials with 1. Obtain an OAuth *Client ID* and *Client Secret* from the cloud provider. The integration should have specific instructions for this. 2. In Home Assistant navigate to **{% my integrations title="Settings -> Devices & Services" %}** -3. Click the overflow menu **...** and choose **Application Credentials** +3. Click the overflow menu on the top right **...** and choose **Application Credentials** 4. Select the integration, enter a *Name* and your OAuth *Client ID* and *Client Secret*. 5. Save the credentials diff --git a/source/_integrations/derivative.markdown b/source/_integrations/derivative.markdown index 46a1278df0b..023586005eb 100644 --- a/source/_integrations/derivative.markdown +++ b/source/_integrations/derivative.markdown @@ -58,7 +58,7 @@ source: name: description: Name to use in the frontend. required: false - default: source entity ID meter + default: source entity ID derivative type: string round: description: Round the calculated derivative value to at most N decimal places. diff --git a/source/_integrations/integration.markdown b/source/_integrations/integration.markdown index 3b957978f20..d60a996d200 100644 --- a/source/_integrations/integration.markdown +++ b/source/_integrations/integration.markdown @@ -65,7 +65,7 @@ source: name: description: Name to use in the frontend. required: false - default: source entity ID meter + default: source entity ID integral type: string unique_id: description: An ID that uniquely identifies the integration sensor. Set this to a unique value to allow customization through the UI. diff --git a/source/_integrations/solaredge.markdown b/source/_integrations/solaredge.markdown index 41c102b7777..0b05eb58702 100644 --- a/source/_integrations/solaredge.markdown +++ b/source/_integrations/solaredge.markdown @@ -36,7 +36,8 @@ In case you would like to convert the values for example to kWh instead of the d # Example configuration.yaml entry for template platform template: - sensor: - - name: solaredge_energy_this_year_template: + - name: solaredge_energy_this_year_template + unit_of_measurement: kWh state: "{{ (states('sensor.solaredge_energy_this_year') | float / 1000) | round(2) }}" ``` diff --git a/source/images/integrations/application_credentials/devices-and-services-menu.png b/source/images/integrations/application_credentials/devices-and-services-menu.png new file mode 100644 index 00000000000..846d7640d4f Binary files /dev/null and b/source/images/integrations/application_credentials/devices-and-services-menu.png differ diff --git a/source/more-info/unsupported/docker_configuration.markdown b/source/more-info/unsupported/docker_configuration.markdown index 4588c05b202..5c512263df9 100644 --- a/source/more-info/unsupported/docker_configuration.markdown +++ b/source/more-info/unsupported/docker_configuration.markdown @@ -31,6 +31,6 @@ following contents: When the Docker configuration file is changed and saved, you need to restart the Docker service on the host machine. -To fix issues with the cgroup level, addjust the `/etc/default/grub` and add `systemd.unified_cgroup_hierarchy=false` to `GRUB_CMDLINE_LINUX_DEFAULT`. After this change is made, you need to reboot the host completely. +To fix issues with the cgroup level, addjust the `/etc/default/grub` and add `systemd.unified_cgroup_hierarchy=false` to `GRUB_CMDLINE_LINUX_DEFAULT` and run `sudo update-grub`. After this change is made, you need to reboot the host completely. You can also just re-run our [convenience installation script](https://github.com/home-assistant/supervised-installer).