From 89c0729964a9272ec8d25fcf89c777b64907d632 Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Thu, 2 Jul 2020 13:20:35 +0200 Subject: [PATCH] Show the header when the sidebar is hidden (#6305) --- src/panels/config/dashboard/ha-config-dashboard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/config/dashboard/ha-config-dashboard.ts b/src/panels/config/dashboard/ha-config-dashboard.ts index 58166e74ba..9fdb8add69 100644 --- a/src/panels/config/dashboard/ha-config-dashboard.ts +++ b/src/panels/config/dashboard/ha-config-dashboard.ts @@ -122,7 +122,7 @@ class HaConfigDashboard extends LitElement { : ""} `; - if (!this.narrow) { + if (!this.narrow && this.hass.dockedSidebar !== "always_hidden") { return content; }