Skip to content

Commit 96925ed

Browse files
committed
MAGETWO-35079: Price of Simple Product isn't recalculated after selecting options on product page
- PriceUtils missed dependency on jQuery. Fixed.
1 parent 0c03986 commit 96925ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/code/Magento/Catalog/view/base/web/js/price-utils.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
* See COPYING.txt for license details.
44
*/
55
define([
6+
'jquery',
67
'underscore'
7-
], function (_) {
8+
], function ($, _) {
89
'use strict';
910

1011
var globalPriceFormat = {

0 commit comments

Comments
 (0)