Skip to content

Commit fccb341

Browse files
arendarenkoihor-sviziev
authored andcommitted
ConfigurableProduct module fixes
- Fix isShowSign parameter passing that adds "+" or "-" to the option. Previously there was a bug because this parameter should be boolean.
1 parent 56092f4 commit fccb341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ define([
404404
options[i].label = options[i].label + ' ' + priceUtils.formatPrice(
405405
optionPriceDiff,
406406
this.options.priceFormat,
407-
1);
407+
true);
408408
}
409409
}
410410
}

0 commit comments

Comments
 (0)