diff --git a/app/code/Magento/Bundle/view/base/web/js/price-bundle.js b/app/code/Magento/Bundle/view/base/web/js/price-bundle.js
index 369bf0f6a741495c855d3883fbc950ebad098603..399e152769f3fc24bce19a052aef9d60fa42af90 100644
--- a/app/code/Magento/Bundle/view/base/web/js/price-bundle.js
+++ b/app/code/Magento/Bundle/view/base/web/js/price-bundle.js
@@ -117,18 +117,17 @@ define([
          */
         _applyQtyFix: function applyQtyFix() {
             var config = this.options.optionConfig;
-            if (!config.isFixedPrice) {
-                return; // Fix touches only Bundle with Fixed price.
-            }
-            _.each(config.options, function (option) {
-                _.each(option.selections, function (item) {
-                    if (item.qty && item.qty !== 1) {
-                        _.each(item.prices, function (price) {
-                            price.amount = price.amount / item.qty;
-                        });
-                    }
+            if (config.isFixedPrice) {
+                _.each(config.options, function (option) {
+                    _.each(option.selections, function (item) {
+                        if (item.qty && item.qty !== 1) {
+                            _.each(item.prices, function (price) {
+                                price.amount = price.amount / item.qty;
+                            });
+                        }
+                    });
                 });
-            });
+            }
         },
 
         /**