From 92b7a3b477324fed396cdafcf2c086e0bd3911b0 Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Wed, 3 Apr 2024 21:54:27 +0200 Subject: [PATCH] Adjust integration filter height for search bar (#20382) --- src/components/ha-filter-integrations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ha-filter-integrations.ts b/src/components/ha-filter-integrations.ts index cab9726f44..86295e1095 100644 --- a/src/components/ha-filter-integrations.ts +++ b/src/components/ha-filter-integrations.ts @@ -92,7 +92,7 @@ export class HaFilterIntegrations extends LitElement { setTimeout(() => { if (!this.expanded) return; this.renderRoot.querySelector("mwc-list")!.style.height = - `${this.clientHeight - 49}px`; + `${this.clientHeight - 49 - 32}px`; // 32px is the height of the search input }, 300); } }