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 e8ed9dd commit 1e98688Copy full SHA for 1e98688
dist/fast-search-card.js
@@ -7428,12 +7428,7 @@ class FastSearchCard extends HTMLElement {
7428
7429
// WICHTIG: Panel wird jetzt VOR den Timer-Controls eingefügt (oberste Position)
7430
const timerControlDesign = container.querySelector('.timer-control-design');
7431
- const activeTimersSection = container.querySelector('.active-timers');
7432
- if (activeTimersSection) {
7433
- activeTimersSection.parentNode.insertBefore(timeSelectionContainer, activeTimersSection.nextSibling);
7434
- } else {
7435
- container.appendChild(timeSelectionContainer);
7436
- }
+ container.insertBefore(timeSelectionContainer, container.firstChild);
7437
}
7438
7439
timeSelectionContainer.innerHTML = `
0 commit comments