Skip to content

Commit f0d0840

Browse files
ENGCOM-8093: Fix for wildcard section reload being broken by section-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
2 parents 390505a + fae1c5c commit f0d0840

File tree

4 files changed

+377
-62
lines changed

4 files changed

+377
-62
lines changed

app/code/Magento/Customer/view/frontend/web/js/customer-data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ define([
7878
var parameters;
7979

8080
sectionNames = sectionConfig.filterClientSideSections(sectionNames);
81-
parameters = _.isArray(sectionNames) ? {
81+
parameters = _.isArray(sectionNames) && sectionNames.indexOf('*') < 0 ? {
8282
sections: sectionNames.join(',')
8383
} : [];
8484
parameters['force_new_section_timestamp'] = forceNewSectionTimestamp;

0 commit comments

Comments
 (0)