We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69facee commit 947ce9bCopy full SHA for 947ce9b
dist/fast-search-card.js
@@ -9076,7 +9076,9 @@ class FastSearchCard extends HTMLElement {
9076
await this.createActionTimer(item, action, totalMinutes);
9077
9078
// Schließe den Picker
9079
- const parentContainer = this.shadowRoot.querySelector('.minimal-time-picker').closest('.shortcuts-tab-content');
+ const timePickerElement = this.shadowRoot.querySelector('.minimal-time-picker');
9080
+ const parentContainer = timePickerElement.closest('.accordion-content') ||
9081
+ timePickerElement.closest('.shortcuts-tab-content');
9082
this.closeMinimalTimePicker(parentContainer);
9083
9084
// Warte kurz und lade dann die Timer-Liste neu
0 commit comments