File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4363,7 +4363,7 @@ class FastSearchCard extends HTMLElement {
43634363
43644364 // NEU: Search-Wrapper auf Mobile verstecken
43654365 if (this.isMobile()) {
4366- const searchWrapper = this.shadowRoot.querySelector('.search-wrapper ');
4366+ const searchWrapper = this.shadowRoot.querySelector('.search-panel ');
43674367 if (searchWrapper) {
43684368 searchWrapper.style.display = 'none';
43694369 }
@@ -4378,7 +4378,7 @@ class FastSearchCard extends HTMLElement {
43784378 hideCategoryButtons() {
43794379 // NEU: Search-Wrapper wieder anzeigen
43804380 if (this.isMobile()) {
4381- const searchWrapper = this.shadowRoot.querySelector('.search-wrapper ');
4381+ const searchWrapper = this.shadowRoot.querySelector('.search-panel ');
43824382 if (searchWrapper) {
43834383 searchWrapper.style.display = 'flex';
43844384 }
You can’t perform that action at this time.
0 commit comments