File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
view/frontend/web/js/action Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 22
33v1.0.24
44- added caching of cookie domain when generating _ sbp cookie
5+ - Fixed issue with the overridden price formatter pattern
56
67v1.0.23
78- added logic to fetch add to cart info and send the event if only productIds array is available
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ define([
1414 */
1515 function prepareItems ( ) {
1616 const cartData = customerData . get ( 'cart' ) ( ) ;
17- const priceFormat = Object . assign ( quote . getPriceFormat ( ) , { 'pattern' : '%s' } ) ;
17+ const priceFormat = Object . assign ( { ... quote . getPriceFormat ( ) } , { 'pattern' : '%s' } ) ;
1818 return quote . getItems ( ) . map ( function ( itemDetails ) {
1919 cartData . items . find
2020 const cartItem = _ . find ( cartData . items , function ( cartItem ) {
You can’t perform that action at this time.
0 commit comments