Skip to content

Commit

Permalink
ENGCOM-8093: Fix for wildcard section reload being broken by section-…
Browse files Browse the repository at this point in the history
…config refacor #29081

 - Merge Pull Request #29081 from complexthings/magento2:bugfix/wildcard-section-reload-broken
 - Merged commits:
   1. 4f10b5d
   2. 1505a36
   3. ff99146
   4. 8047497
   5. dd862a2
   6. cdfc681
   7. c2e254c
   8. c490073
   9. 176013f
   10. 2922c1c
   11. f7da23e
   12. 3b397e3
   13. 6f9a274
   14. 5de71f6
   15. fd4a2c7
   16. fae1c5c
  • Loading branch information
magento-engcom-team committed Sep 22, 2020
2 parents 390505a + fae1c5c commit f0d0840
Show file tree
Hide file tree
Showing 4 changed files with 377 additions and 62 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ define([
var parameters;

sectionNames = sectionConfig.filterClientSideSections(sectionNames);
parameters = _.isArray(sectionNames) ? {
parameters = _.isArray(sectionNames) && sectionNames.indexOf('*') < 0 ? {
sections: sectionNames.join(',')
} : [];
parameters['force_new_section_timestamp'] = forceNewSectionTimestamp;
Expand Down
Loading

0 comments on commit f0d0840

Please sign in to comment.