Skip to content

Commit 47c6705

Browse files
ENGCOM-8093: Fix for wildcard section reload being broken by section-config refacor #29081
2 parents c9a4107 + f0d0840 commit 47c6705

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)