File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -1559,15 +1559,6 @@ const handleIconCachePurged = () => {
15591559} ;
15601560
15611561const searchFeature = window . features ?. search ?. init ?. ( {
1562- // ...existing options...
1563- } ) ;
1564-
1565- // Initialize featured banner (compact) feature
1566- const featuredFeature = window . features ?. featured ?. init ?. ( {
1567- container : document . getElementById ( 'featuredBanner' ) ,
1568- items : ( window ?. require ? window . require ( './config/featured' ) : [ ] )
1569- } ) ;
1570-
15711562 state,
15721563 searchInput : document . getElementById ( 'searchInput' ) ,
15731564 tabs : Array . from ( tabs ) ,
@@ -1586,6 +1577,12 @@ const featuredFeature = window.features?.featured?.init?.({
15861577if ( searchFeature && typeof searchFeature . applySearch === 'function' ) {
15871578 applySearch = searchFeature . applySearch ;
15881579}
1580+
1581+ // Initialize featured banner (compact) feature
1582+ const featuredFeature = window . features ?. featured ?. init ?. ( {
1583+ container : document . getElementById ( 'featuredBanner' ) ,
1584+ items : ( window ?. require ? window . require ( './config/featured' ) : [ ] )
1585+ } ) ;
15891586// ...existing code...
15901587// Modale confirmation actions
15911588const actionConfirmModal = document . getElementById ( 'actionConfirmModal' ) ;
You can’t perform that action at this time.
0 commit comments