File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -10370,14 +10370,9 @@ class FastSearchCard extends HTMLElement {
1037010370 if ( ! scheduleSelectionContainer ) {
1037110371 scheduleSelectionContainer = document . createElement ( 'div' ) ;
1037210372 scheduleSelectionContainer . className = 'schedule-time-selection' ;
10373-
10374- // Panel an oberster Position einfügen
10375- const activeSchedulesSection = container . querySelector ( '.active-schedules' ) ;
10376- if ( activeSchedulesSection ) {
10377- activeSchedulesSection . parentNode . insertBefore ( scheduleSelectionContainer , activeSchedulesSection . nextSibling ) ;
10378- } else {
10379- container . appendChild ( scheduleSelectionContainer ) ;
10380- }
10373+
10374+ // Zeitplan-Auswahl IMMER ganz oben einfügen (wie bei Timer)
10375+ container . insertBefore ( scheduleSelectionContainer , container . firstChild ) ;
1038110376 }
1038210377
1038310378 scheduleSelectionContainer . innerHTML = `
You can’t perform that action at this time.
0 commit comments