Skip to content

Commit 4f10b5d

Browse files
author
Greg Harvell
committed
Fix for wildcard section reload being broken by section-config refactor in 2bd4cb5
1 parent 1ee7e1f commit 4f10b5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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
@@ -86,7 +86,7 @@ define([
8686
var parameters;
8787

8888
sectionNames = sectionConfig.filterClientSideSections(sectionNames);
89-
parameters = _.isArray(sectionNames) ? {
89+
parameters = _.isArray(sectionNames) && sectionNames.indexOf('*') < 0 ? {
9090
sections: sectionNames.join(',')
9191
} : [];
9292
parameters['force_new_section_timestamp'] = forceNewSectionTimestamp;

0 commit comments

Comments
 (0)