Skip to content

Commit dd694aa

Browse files
authored
Update fast-search-card.js
1 parent aa01292 commit dd694aa

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

dist/fast-search-card.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11601,9 +11601,13 @@ class FastSearchCard extends HTMLElement {
1160111601
console.warn(`❌ Action item not found: ${actionId}`);
1160211602
return;
1160311603
}
11604-
11605-
// 3. Schließe aktuelle Detail-View
11606-
this.closeDetailView();
11604+
11605+
// 3. Schließe aktuelle Detail-View (falls offen)
11606+
if (this.isDetailView) {
11607+
this.isDetailView = false;
11608+
this.currentDetailItem = null;
11609+
this.render();
11610+
}
1160711611

1160811612
// 4. Wechsle zur Ziel-Kategorie
1160911613
this.switchToCategory(targetCategory);

0 commit comments

Comments
 (0)