Skip to content

Commit 00a383f

Browse files
committed
[ 1.0.75 ] * Changed autofocus property of ha-input-search component from true to false. This was causing a keyboard prompt to popup automatically when a section was focused that supports filtering.
1 parent 0a3188c commit 00a383f

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Change are listed in reverse chronological order (newest to oldest).
66

77
<span class="changelog">
88

9+
###### [ 1.0.75 ] - 2026/04/05
10+
11+
* Changed autofocus property of `ha-input-search` component from `true` to `false`. This was causing a keyboard prompt to popup automatically when a section was focused that supports filtering.
12+
913
###### [ 1.0.74 ] - 2026/04/02
1014

1115
* Updated controls that were no longer displaying properly due to HA 2026.04.0 changes. HA devs replaced the `search-input-outlined` material design component with the `ha-input-search` component due to web-awesome changes.

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { css } from 'lit';
22

33
/** current version of the card. */
4-
export const CARD_VERSION = '1.0.74';
4+
export const CARD_VERSION = '1.0.75';
55

66
/** SpotifyPlus integration domain identifier. */
77
export const DOMAIN_SPOTIFYPLUS = 'spotifyplus';

src/sections/fav-browser-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export class FavBrowserBase extends AlertUpdatesBase {
164164
appearance="outlined"
165165
.hass=${this.hass}
166166
.value=${this.filterCriteria || ""}
167-
.autofocus=${true}
167+
.autofocus=${false}
168168
.placeholder=${this.filterCriteriaPlaceholder || "search by name"}
169169
@input=${this.onFilterCriteriaChange}
170170
@keypress=${this.onFilterCriteriaKeyPress}

0 commit comments

Comments
 (0)