We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 754b91a commit 8910467Copy full SHA for 8910467
app/code/Magento/Checkout/view/frontend/web/js/view/summary/shipping.js
@@ -29,11 +29,13 @@ define([
29
}
30
shippingMethod = quote.shippingMethod();
31
32
- if (typeof (shippingMethod['method_title']) !== 'undefined') {
+ if (typeof shippingMethod['method_title'] !== 'undefined') {
33
shippingMethodTitle = ' - ' + shippingMethod['method_title'];
34
35
36
- return shippingMethod ? shippingMethod['carrier_title'] + shippingMethodTitle : shippingMethod['carrier_title'];
+ return shippingMethod ?
37
+ shippingMethod['carrier_title'] + shippingMethodTitle :
38
+ shippingMethod['carrier_title'];
39
},
40
41
/**
0 commit comments