File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
app/code/Magento/Checkout/view/frontend/web/js
model/cart/shipping-save-processor Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ define([
48
48
resourceUrlManager . getUrlForSetShippingInformation ( quote ) ,
49
49
JSON . stringify ( payload )
50
50
) . done (
51
- function ( response ) {
51
+ function ( ) {
52
52
fullScreenLoader . stopLoader ( ) ;
53
53
}
54
54
) . fail (
Original file line number Diff line number Diff line change @@ -47,10 +47,11 @@ define([
47
47
*/
48
48
initObservable : function ( ) {
49
49
var self = this ;
50
- shippingSaveProcessor . registerProcessor ( 'cart' , cartShippingProcessor ) ;
50
+
51
51
this . _super ( ) ;
52
52
53
- this . selectedShippingMethod . subscribe ( function ( value ) {
53
+ shippingSaveProcessor . registerProcessor ( 'cart' , cartShippingProcessor ) ;
54
+ this . selectedShippingMethod . subscribe ( function ( ) {
54
55
if ( quote . shippingMethod ( ) ) {
55
56
shippingSaveProcessor . saveShippingInformation ( 'cart' ) ;
56
57
}
You can’t perform that action at this time.
0 commit comments