taxtank-core 0.28.41 → 0.28.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3046,7 +3046,7 @@
3046
3046
  var min = propertyItem.price.product.minQty;
3047
3047
  // if user has property subscription and number of properties doesn't exceed the maximum in the service product - return one more
3048
3048
  if (this.hasItem(propertyItem)) {
3049
- propertiesQty = propertiesQty < max ? propertiesQty + 1 : max;
3049
+ propertiesQty = this.propertyQuantity < max ? this.propertyQuantity + 1 : max;
3050
3050
  }
3051
3051
  return Math.max(min, propertiesQty);
3052
3052
  };